mirror of
https://github.com/ppy/osu.git
synced 2025-01-13 15:43:22 +08: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 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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user