mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:47:26 +08:00
20 lines
513 B
C#
20 lines
513 B
C#
//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;
|
|
using osu.Game.Beatmaps.Timing;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Beatmaps
|
|
{
|
|
public class Beatmap
|
|
{
|
|
public List<BaseHit> HitObjects;
|
|
|
|
public List<ControlPoint> ControlPoints;
|
|
|
|
public string Difficulty;
|
|
public User Creator;
|
|
}
|
|
} |