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;
|
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
|
|
|
public class Beatmap
|
|
|
|
{
|
2016-09-02 17:27:38 +08:00
|
|
|
public List<BaseHit> HitObjects;
|
2016-08-31 11:33:01 +08:00
|
|
|
|
2016-08-31 12:51:00 +08:00
|
|
|
public List<ControlPoint> ControlPoints;
|
|
|
|
|
2016-08-31 11:33:01 +08:00
|
|
|
public string Difficulty;
|
|
|
|
public User Creator;
|
|
|
|
}
|
|
|
|
}
|