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