1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Beatmaps/Beatmap.cs

20 lines
623 B
C#
Raw Normal View History

//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;
using System.Collections.Generic;
2016-10-11 01:00:16 +08:00
using OpenTK.Graphics;
using osu.Game.Beatmaps.Objects;
using osu.Game.Beatmaps.Timing;
2016-10-19 01:35:01 +08:00
using osu.Game.Database;
namespace osu.Game.Beatmaps
{
public class Beatmap
{
2016-10-19 01:35:01 +08:00
public BeatmapInfo BeatmapInfo { get; set; }
public List<HitObject> HitObjects { get; set; }
public List<ControlPoint> ControlPoints { get; set; }
2016-10-11 01:00:16 +08:00
public List<Color4> ComboColors { get; set; }
}
}