feat: add elf handler

This commit is contained in:
Naruse
2025-06-17 09:24:55 +08:00
parent 22cbf44bcf
commit a9c362f224
9 changed files with 198 additions and 718 deletions

View File

@@ -8,6 +8,6 @@ public class HandlerGetElfDataReq : Handler
{
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
{
await connection.SendPacket(new PacketGetElfDataRsp());
await connection.SendPacket(new PacketGetElfDataRsp(connection.Player!));
}
}