Files
Ragon/Ragon.Client/Sources/RagonRoomInformation.cs
T

12 lines
248 B
C#
Raw Normal View History

2024-04-13 17:43:23 +03:00
namespace Ragon.Client
2024-04-13 16:17:31 +03:00
{
2024-04-13 17:43:23 +03:00
public struct RagonRoomInformation
{
public string Id;
public string Scene;
public int PlayerMax;
public int PlayerMin;
public int PlayerCount;
public Dictionary<string, byte[]> Properties;
}
2024-04-13 16:17:31 +03:00
}