From daed27460c8f2b29349401d59ac4026f2fcf8e48 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 4 Dec 2020 17:23:57 +0900 Subject: [PATCH] Add simple user state class --- .../RealtimeMultiplayer/MultiplayerClientState.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 osu.Game/Online/RealtimeMultiplayer/MultiplayerClientState.cs diff --git a/osu.Game/Online/RealtimeMultiplayer/MultiplayerClientState.cs b/osu.Game/Online/RealtimeMultiplayer/MultiplayerClientState.cs new file mode 100644 index 0000000000..ac76f8999a --- /dev/null +++ b/osu.Game/Online/RealtimeMultiplayer/MultiplayerClientState.cs @@ -0,0 +1,15 @@ +// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. +// See the LICENCE file in the repository root for full licence text. + +namespace osu.Game.Online.RealtimeMultiplayer +{ + public class MultiplayerClientState + { + public MultiplayerClientState(in long roomId) + { + CurrentRoomID = roomId; + } + + public long CurrentRoomID { get; } + } +}