Files
KianaBH3/GameServer/Server/Packet/Handler.cs
2025-06-14 11:15:32 +08:00

6 lines
167 B
C#

namespace KianaBH.GameServer.Server.Packet;
public abstract class Handler
{
public abstract Task OnHandle(Connection connection, byte[] header, byte[] data);
}