Show a loading spinner on multiplayer lounge loads

This commit is contained in:
smoogipoo
2020-06-05 20:52:27 +09:00
parent 5d1770dec8
commit bb89114b70
6 changed files with 56 additions and 3 deletions

View File

@ -93,6 +93,8 @@ namespace osu.Game.Tests.Visual.Multiplayer
remove => throw new NotImplementedException();
}
public Bindable<bool> InitialRoomsReceived { get; } = new Bindable<bool>(true);
public IBindableList<Room> Rooms { get; } = new BindableList<Room>();
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)