mirror of
https://github.com/osukey/osukey.git
synced 2025-05-17 11:37:32 +09:00
Throw not implemented exceptions
This commit is contained in:
parent
76a8d4329f
commit
3db0b69f92
@ -141,17 +141,11 @@ namespace osu.Game.Tests.Visual.Playlists
|
|||||||
|
|
||||||
public IBindableList<Room> Rooms => null;
|
public IBindableList<Room> Rooms => null;
|
||||||
|
|
||||||
public void AddOrUpdateRoom(Room room)
|
public void AddOrUpdateRoom(Room room) => throw new NotImplementedException();
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void RemoveRoom(Room room)
|
public void RemoveRoom(Room room) => throw new NotImplementedException();
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ClearRooms()
|
public void ClearRooms() => throw new NotImplementedException();
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
|
public void CreateRoom(Room room, Action<Room> onSuccess = null, Action<string> onError = null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user