1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 05:02:56 +08:00

Remove unnecessary room id from leave room request

This commit is contained in:
Dean Herbert 2020-12-08 14:39:26 +09:00
parent 882ace6efe
commit e193f8214d

View File

@ -20,7 +20,6 @@ namespace osu.Game.Online.RealtimeMultiplayer
/// <summary> /// <summary>
/// Request to leave the currently joined room. /// Request to leave the currently joined room.
/// </summary> /// </summary>
/// <param name="roomId">The databased room ID.</param> Task LeaveRoom();
Task LeaveRoom(long roomId);
} }
} }