From dbe048cdc6b6d893e92109d50fd3fa5732fa294c Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 8 Dec 2020 17:03:44 +0900 Subject: [PATCH] Add client method for notifying about host changes --- osu.Game/Online/RealtimeMultiplayer/ISpectatorClient.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/osu.Game/Online/RealtimeMultiplayer/ISpectatorClient.cs b/osu.Game/Online/RealtimeMultiplayer/ISpectatorClient.cs index 1e6832e728..f3dff0de86 100644 --- a/osu.Game/Online/RealtimeMultiplayer/ISpectatorClient.cs +++ b/osu.Game/Online/RealtimeMultiplayer/ISpectatorClient.cs @@ -28,6 +28,12 @@ namespace osu.Game.Online.RealtimeMultiplayer /// The user. Task UserLeft(MultiplayerRoomUser user); + /// + /// Signal that the host of the room has changed. + /// + /// The user ID of the new host. + Task HostChanged(long userId); + /// /// Signals that the settings for this room have changed. ///