osu/osu.Game/Beatmaps/Legacy/LegacyBeatmap.cs

18 lines
522 B
C#
Raw Normal View History

2017-03-17 05:24:46 +00:00
namespace osu.Game.Beatmaps.Legacy
{
/// <summary>
/// A type of Beatmap loaded from a legacy .osu beatmap file (version &lt;=15).
/// </summary>
internal class LegacyBeatmap : Beatmap, IIsLegacy
{
/// <summary>
/// Constructs a new beatmap.
/// </summary>
/// <param name="original">The original beatmap to use the parameters of.</param>
public LegacyBeatmap(Beatmap original = null)
: base(original)
{
}
}
}