// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable enable namespace osu.Game.Online.RealtimeMultiplayer { /// /// A multiplayer client which maintains local room and user state. Also provides a proxy to access the . /// public interface IStatefulMultiplayerClient : IMultiplayerClient, IMultiplayerServer { MultiplayerUserState State { get; } MultiplayerRoom? Room { get; } } }