6 lines
186 B
C#
6 lines
186 B
C#
namespace SharpChat.PacketsC2S {
|
|
public interface IC2SPacketHandler {
|
|
bool IsMatch(C2SPacketHandlerContext ctx);
|
|
void Handle(C2SPacketHandlerContext ctx);
|
|
}
|
|
}
|