Files
Ragon/Ragon.Server/Sources/Handler/RoomOwnershipOperation.cs
T

19 lines
414 B
C#
Raw Normal View History

2023-06-27 23:41:30 +03:00
using NLog;
using Ragon.Protocol;
using Ragon.Server.Entity;
namespace Ragon.Server.Handler;
2023-10-07 19:30:52 +03:00
public sealed class RoomOwnershipOperation : BaseOperation
2023-06-27 23:41:30 +03:00
{
private readonly Logger _logger = LogManager.GetCurrentClassLogger();
2023-10-07 19:30:52 +03:00
public RoomOwnershipOperation(RagonBuffer reader, RagonBuffer writer) : base(reader, writer)
2023-06-27 23:41:30 +03:00
{
2023-10-07 19:30:52 +03:00
}
public override void Handle(RagonContext context, byte[] data)
{
2023-06-27 23:41:30 +03:00
}
}