Files
osukey/osu.Game/Beatmaps/BeatmapSet.cs
2016-10-18 13:38:27 -04:00

20 lines
612 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.Database;
using osu.Game.Users;
namespace osu.Game.Beatmaps
{
/// <summary>
/// A beatmap set contains multiple beatmap (difficulties).
/// </summary>
public class BeatmapSet
{
public BeatmapSetInfo BeatmapSetInfo { get; set; }
public List<Beatmap> Beatmaps { get; protected set; } = new List<Beatmap>();
public User Creator { get; set; }
}
}