mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Add basic class structure for Beatmap/HitObject/SampleInfo/User.
This commit is contained in:
21
osu.Game/Beatmaps/BeatmapSet.cs
Normal file
21
osu.Game/Beatmaps/BeatmapSet.cs
Normal file
@ -0,0 +1,21 @@
|
||||
//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.Users;
|
||||
|
||||
namespace osu.Game.Beatmaps
|
||||
{
|
||||
/// <summary>
|
||||
/// A beatmap set contains multiple beatmap (difficulties).
|
||||
/// </summary>
|
||||
public class BeatmapSet
|
||||
{
|
||||
public List<Beatmap> Beatmaps { get; protected set; }
|
||||
|
||||
public string Artist;
|
||||
public string Title;
|
||||
|
||||
public User Creator;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user