mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 15:12:57 +08:00
Add simple user state class
This commit is contained in:
parent
be4a668e0b
commit
daed27460c
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user