Added C2S and S2C markings to class names.

This commit is contained in:
flash 2025-04-25 20:12:42 +00:00
commit a8f5c00e37
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E
45 changed files with 181 additions and 181 deletions

View file

@ -0,0 +1,6 @@
namespace SharpChat {
public interface C2SPacketHandler {
bool IsMatch(ChatPacketHandlerContext ctx);
void Handle(ChatPacketHandlerContext ctx);
}
}