Skip to content

Commit ac0aef0

Browse files
committed
Change RoomAvailable entity properties
1 parent c0967f0 commit ac0aef0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Assets/Plugins/Colyseus/Room.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
namespace Colyseus
1212
{
1313
public class RoomAvailable {
14-
public string roomId;
15-
public uint clients;
16-
public uint maxClients;
17-
public object metadata;
14+
public string roomId { get; set; }
15+
public uint clients { get; set; }
16+
public uint maxClients { get; set; }
17+
public object metadata { get; set; }
1818
}
1919

2020
/// <summary>

0 commit comments

Comments
 (0)