Link up ready button to spectate state

This commit is contained in:
smoogipoo
2021-04-07 16:35:36 +09:00
parent 1f57b6884d
commit 6be9c9f0f4
3 changed files with 67 additions and 1 deletions

View File

@ -58,6 +58,12 @@ namespace osu.Game.Tests.Visual.Multiplayer
});
}
public void ChangeRoomState(MultiplayerRoomState newState)
{
Debug.Assert(Room != null);
((IMultiplayerClient)this).RoomStateChanged(newState);
}
public void ChangeUserState(int userId, MultiplayerUserState newState)
{
Debug.Assert(Room != null);