sharp-chat/SharpChat/C2SPacketHandler.cs

7 lines
171 B
C#
Raw Normal View History

2025-04-26 22:28:41 +00:00
namespace SharpChat {
public interface C2SPacketHandler {
bool IsMatch(C2SPacketHandlerContext ctx);
2025-04-26 22:28:41 +00:00
Task Handle(C2SPacketHandlerContext ctx);
2023-02-16 22:16:06 +01:00
}
}