2016-08-31 11:33:01 +08:00
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Game.Beatmaps.Objects;
|
2016-08-31 12:51:00 +08:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
2016-08-31 11:33:01 +08:00
|
|
|
using osu.Game.Users;
|
2016-10-08 01:50:34 +08:00
|
|
|
using SQLite;
|
2016-08-31 11:33:01 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
|
|
|
public class Beatmap
|
|
|
|
{
|
2016-10-08 01:50:34 +08:00
|
|
|
[PrimaryKey]
|
|
|
|
public int BeatmapID { get; set; }
|
|
|
|
[NotNull, Indexed]
|
|
|
|
public int BeatmapSetID { get; set; }
|
|
|
|
[Indexed]
|
|
|
|
public int BeatmapMetadataID { get; set; }
|
|
|
|
public int BaseDifficultyID { get; set; }
|
|
|
|
[Ignore]
|
|
|
|
public List<HitObject> HitObjects { get; set; }
|
|
|
|
[Ignore]
|
|
|
|
public List<ControlPoint> ControlPoints { get; set; }
|
|
|
|
[Ignore]
|
|
|
|
public BeatmapMetadata Metadata { get; set; }
|
|
|
|
[Ignore]
|
|
|
|
public BaseDifficulty BaseDifficulty { get; set; }
|
|
|
|
public string Version { get; set; }
|
2016-08-31 11:33:01 +08:00
|
|
|
}
|
|
|
|
}
|