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