This commit is contained in:
2023-10-08 21:13:31 +03:00
parent 64842886d7
commit c214b6ca7f
45 changed files with 116 additions and 113 deletions
@@ -0,0 +1,11 @@
using Ragon.Protocol;
namespace Ragon.Client;
public class RoomDataHandler: IHandler
{
public void Handle(RagonBuffer reader)
{
var rawData = reader.RawData;
}
}