mirror of
https://github.com/ppy/osu.git
synced 2025-02-06 21:52:58 +08:00
Add some comments
This commit is contained in:
parent
d8ff5bcacb
commit
c88e906cb6
@ -56,6 +56,10 @@ namespace osu.Game.Online.Rooms
|
|||||||
[Key(10)]
|
[Key(10)]
|
||||||
public double StarRating { get; set; }
|
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)]
|
[Key(11)]
|
||||||
public int? BeatmapSetID { get; set; }
|
public int? BeatmapSetID { get; set; }
|
||||||
|
|
||||||
|
@ -67,6 +67,10 @@ namespace osu.Game.Online.Rooms
|
|||||||
set => Beatmap = new APIBeatmap { OnlineID = value };
|
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")]
|
[JsonProperty("beatmapset_id")]
|
||||||
public int? BeatmapSetId { get; set; }
|
public int? BeatmapSetId { get; set; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user