From 327799c263bd923f4b7b51b8e675914aabb1d74f Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 8 Dec 2020 14:51:48 +0900 Subject: [PATCH] Rename multiplayer server file to match class --- .../{ISpectatorServer.cs => IMultiplayerServer.cs} | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) rename osu.Game/Online/RealtimeMultiplayer/{ISpectatorServer.cs => IMultiplayerServer.cs} (66%) diff --git a/osu.Game/Online/RealtimeMultiplayer/ISpectatorServer.cs b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs similarity index 66% rename from osu.Game/Online/RealtimeMultiplayer/ISpectatorServer.cs rename to osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs index 053ffa0462..f6eb3b8ff5 100644 --- a/osu.Game/Online/RealtimeMultiplayer/ISpectatorServer.cs +++ b/osu.Game/Online/RealtimeMultiplayer/IMultiplayerServer.cs @@ -1,6 +1,3 @@ -// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. -// See the LICENCE file in the repository root for full licence text. - using System.Threading.Tasks; namespace osu.Game.Online.RealtimeMultiplayer @@ -14,12 +11,12 @@ public interface IMultiplayerServer /// Request to join a multiplayer room. /// /// The databased room ID. - /// Whether the room could be joined. - Task JoinRoom(long roomId); + /// If the user is already in the requested (or another) room. + Task JoinRoom(long roomId); /// /// Request to leave the currently joined room. /// Task LeaveRoom(); } -} +} \ No newline at end of file