6 lines
176 B
C#
6 lines
176 B
C#
namespace SharpChat {
|
|
public interface C2SPacketHandler {
|
|
bool IsMatch(ChatPacketHandlerContext ctx);
|
|
void Handle(ChatPacketHandlerContext ctx);
|
|
}
|
|
}
|