mirror of
https://github.com/ppy/osu.git
synced 2026-05-28 06:51:23 +08:00
Add simple user state class
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user