1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 05:42:54 +08:00

Add simple user state class

This commit is contained in:
Dean Herbert 2020-12-04 17:23:57 +09:00
parent be4a668e0b
commit daed27460c

View File

@ -0,0 +1,15 @@
// 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.
namespace osu.Game.Online.RealtimeMultiplayer
{
public class MultiplayerClientState
{
public MultiplayerClientState(in long roomId)
{
CurrentRoomID = roomId;
}
public long CurrentRoomID { get; }
}
}