1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 03:02:54 +08:00

Add some comments

This commit is contained in:
Dan Balasescu 2024-12-24 19:40:06 +09:00
parent d8ff5bcacb
commit c88e906cb6
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View File

@ -56,6 +56,10 @@ namespace osu.Game.Online.Rooms
[Key(10)]
public double StarRating { get; set; }
/// <summary>
/// A non-<c>null</c> value indicates "freestyle" mode where players are able to individually select
/// their own choice of beatmap (from the respective beatmap set) and ruleset to play in the room.
/// </summary>
[Key(11)]
public int? BeatmapSetID { get; set; }

View File

@ -67,6 +67,10 @@ namespace osu.Game.Online.Rooms
set => Beatmap = new APIBeatmap { OnlineID = value };
}
/// <summary>
/// A non-<c>null</c> value indicates "freestyle" mode where players are able to individually select
/// their own choice of beatmap (from the respective beatmap set) and ruleset to play in the room.
/// </summary>
[JsonProperty("beatmapset_id")]
public int? BeatmapSetId { get; set; }