feat(wip): room properties

This commit is contained in:
2024-05-05 15:45:28 +03:00
parent b4cba20d82
commit 6886808132
8 changed files with 43 additions and 13 deletions
@@ -4,9 +4,17 @@ namespace Ragon.Client
{
public class RoomDataHandler: IHandler
{
private readonly RagonClient _client;
public RoomDataHandler(RagonClient client)
{
_client = client;
}
public void Handle(RagonBuffer reader)
{
var len = reader.ReadUShort();
_client.Room?.Data(reader);
}
}
}