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