Files
Ragon/Ragon.Core/Handlers/Abstract/IHandler.cs
T
2022-12-16 00:05:46 +04:00

8 lines
166 B
C#

using Ragon.Common;
namespace Ragon.Core;
public interface IHandler
{
public void Handle(PlayerContext context, RagonSerializer reader, RagonSerializer writer);
}