sharp-chat/SharpChat/IPacketHandler.cs

7 lines
166 B
C#
Raw Normal View History

namespace SharpChat {
public interface IPacketHandler {
bool IsMatch(PacketHandlerContext ctx);
void Handle(PacketHandlerContext ctx);
}
}