Move listing polling component to LoungeSubScreen

This commit is contained in:
smoogipoo
2021-08-13 17:39:09 +09:00
parent df24f7a81e
commit 8910781bcd
19 changed files with 308 additions and 451 deletions

View File

@ -141,6 +141,18 @@ namespace osu.Game.Tests.Visual.Playlists
public IBindableList<Room> Rooms => null;
public void AddOrUpdateRoom(Room room)
{
}
public void RemoveRoom(Room room)
{
}
public void ClearRooms()
{
}
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
{
if (CreateRequested == null)