Initial support code for beatmap loading

This commit is contained in:
Drew DeVault
2016-10-04 16:29:08 -04:00
parent 768c3bc31e
commit bc69aa1455
11 changed files with 274 additions and 6 deletions

View File

@ -10,11 +10,12 @@ namespace osu.Game.Beatmaps
{
public class Beatmap
{
public int BeatmapID;
public List<HitObject> HitObjects;
public List<ControlPoint> ControlPoints;
public string Difficulty;
public User Creator;
public string Version;
public Metadata Metadata;
}
}