1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 06:33:32 +08:00
osu-lazer/osu.Game/Online/RealtimeMultiplayer/IStatefulMultiplayerClient.cs
2020-12-09 17:45:07 +09:00

18 lines
582 B
C#

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