osukey/osu.Game/Online/RealtimeMultiplayer/MultiplayerClientState.cs
2020-12-08 20:43:18 +09:00

16 lines
411 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.
namespace osu.Game.Online.RealtimeMultiplayer
{
public class MultiplayerClientState
{
public long CurrentRoomID { get; set; }
public MultiplayerClientState(in long roomId)
{
CurrentRoomID = roomId;
}
}
}