1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:47:24 +08:00

Document room states and remove unnecessary WaitingForResults state

This commit is contained in:
Dean Herbert 2020-12-08 18:30:58 +09:00
parent 147db0abe2
commit 2aedd82e27

View File

@ -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
}
}