2016-08-31 03:33:01 +00: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;
|
2016-10-10 17:00:16 +00:00
|
|
|
using OpenTK.Graphics;
|
2016-08-31 04:51:00 +00:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
2016-10-18 17:35:01 +00:00
|
|
|
using osu.Game.Database;
|
2016-11-14 09:03:20 +00:00
|
|
|
using osu.Game.Modes.Objects;
|
2016-08-31 03:33:01 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
|
|
|
public class Beatmap
|
|
|
|
{
|
2016-10-18 17:35:01 +00:00
|
|
|
public BeatmapInfo BeatmapInfo { get; set; }
|
2016-10-28 05:13:52 +00:00
|
|
|
public BeatmapMetadata Metadata => BeatmapInfo?.Metadata ?? BeatmapInfo?.BeatmapSet?.Metadata;
|
2016-10-07 17:50:34 +00:00
|
|
|
public List<HitObject> HitObjects { get; set; }
|
|
|
|
public List<ControlPoint> ControlPoints { get; set; }
|
2016-10-10 17:00:16 +00:00
|
|
|
public List<Color4> ComboColors { get; set; }
|
2016-08-31 03:33:01 +00:00
|
|
|
}
|
2016-10-19 14:31:10 +00:00
|
|
|
}
|