mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Drop BeatmapSet, only BeatmapSetInfo is necessary
This commit is contained in:
@ -1,19 +0,0 @@
|
||||
//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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user