Files
Ragon/Ragon.Client/Sources/Handler/RoomDataHandler.cs
T

11 lines
173 B
C#
Raw Normal View History

2023-10-08 21:13:31 +03:00
using Ragon.Protocol;
namespace Ragon.Client;
public class RoomDataHandler: IHandler
{
public void Handle(RagonBuffer reader)
{
var rawData = reader.RawData;
}
}