This commit is contained in:
SoulliesOfficial
2025-07-26 04:20:25 -04:00
parent bae0bfbc20
commit abf81ece7b
196 changed files with 3909 additions and 964 deletions

View File

@@ -8,6 +8,18 @@ namespace Ichni.RhythmGame
{
public bool isCompleted;
public string additionalInfo;
public Dictionary<string, BeatmapSave> beatmapSaves;
public List<BeatmapSave> beatmapSaves;
public SongStatusSave()
{
}
public SongStatusSave(bool isCompleted, string additionalInfo, List<BeatmapSave> beatmapSaves)
{
this.isCompleted = isCompleted;
this.additionalInfo = additionalInfo;
this.beatmapSaves = beatmapSaves;
}
}
}