mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:07:38 +08:00
Document room states and remove unnecessary WaitingForResults state
This commit is contained in:
parent
147db0abe2
commit
2aedd82e27
@ -10,10 +10,24 @@ namespace osu.Game.Online.RealtimeMultiplayer
|
||||
/// </summary>
|
||||
public enum MultiplayerRoomState
|
||||
{
|
||||
/// <summary>
|
||||
/// The room is open and accepting new players.
|
||||
/// </summary>
|
||||
Open,
|
||||
|
||||
/// <summary>
|
||||
/// A game start has been triggered but players have not finished loading.
|
||||
/// </summary>
|
||||
WaitingForLoad,
|
||||
|
||||
/// <summary>
|
||||
/// A game is currently ongoing.
|
||||
/// </summary>
|
||||
Playing,
|
||||
WaitingForResults,
|
||||
|
||||
/// <summary>
|
||||
/// The room has been disbanded and closed.
|
||||
/// </summary>
|
||||
Closed
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user