Refactor InitialRoomsReceived to avoid extra bindables

This commit is contained in:
smoogipoo
2020-12-20 23:05:17 +09:00
parent 45107280a0
commit c33e693b8e
8 changed files with 24 additions and 17 deletions

View File

@ -18,7 +18,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
public readonly BindableList<Room> Rooms = new BindableList<Room>();
public Bindable<bool> InitialRoomsReceived { get; } = new Bindable<bool>(true);
public IBindable<bool> InitialRoomsReceived { get; } = new Bindable<bool>(true);
IBindableList<Room> IRoomManager.Rooms => Rooms;