Files
Ragon/Ragon.Core/Handlers/Abstract/IHandler.cs
T

8 lines
166 B
C#
Raw Normal View History

2022-12-16 00:05:46 +04:00
using Ragon.Common;
namespace Ragon.Core;
public interface IHandler
{
public void Handle(PlayerContext context, RagonSerializer reader, RagonSerializer writer);
}