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

12 lines
160 B
C#
Raw Normal View History

2023-10-08 21:13:31 +03:00
using Ragon.Protocol;
2024-04-29 09:12:42 +03:00
namespace Ragon.Client
2023-10-08 21:13:31 +03:00
{
2024-04-29 09:12:42 +03:00
public class RoomDataHandler: IHandler
2023-10-08 21:13:31 +03:00
{
2024-04-29 09:12:42 +03:00
public void Handle(RagonBuffer reader)
2023-11-05 22:19:55 +03:00
{
}
2023-10-08 21:13:31 +03:00
}
}