mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Merge pull request #15949 from peppy/playlist-order-documentation
Reword xmldoc of `MultiplayerPlaylistItem.PlaylistOrder` to better match actual behaviour
This commit is contained in:
@ -40,8 +40,12 @@ namespace osu.Game.Online.Rooms
|
|||||||
public bool Expired { get; set; }
|
public bool Expired { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The order in which this <see cref="MultiplayerPlaylistItem"/> will be played, starting from 0 and increasing for items which will be played later.
|
/// The order in which this <see cref="MultiplayerPlaylistItem"/> will be played relative to others.
|
||||||
|
/// Playlist items should be played in increasing order (lower values are played first).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// This is only valid for items which are not <see cref="Expired"/>. The value for expired items is undefined and should not be used.
|
||||||
|
/// </remarks>
|
||||||
[Key(8)]
|
[Key(8)]
|
||||||
public ushort PlaylistOrder { get; set; }
|
public ushort PlaylistOrder { get; set; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user