feat(wip): list rooms

This commit is contained in:
2024-04-13 17:43:23 +03:00
parent d82964526c
commit c4811ef052
8 changed files with 55 additions and 32 deletions
+10 -11
View File
@@ -1,13 +1,12 @@
using Ragon.Protocol;
namespace Ragon.Client;
public struct RagonRoomInformation
namespace Ragon.Client
{
public string Id;
public string Scene;
public int PlayerMax;
public int PlayerMin;
public int PlayerCount;
public Dictionary<string, byte[]> Properties;
public struct RagonRoomInformation
{
public string Id;
public string Scene;
public int PlayerMax;
public int PlayerMin;
public int PlayerCount;
public Dictionary<string, byte[]> Properties;
}
}