Added several CallGS handlers.

This commit is contained in:
Kei-Luna
2026-04-22 06:03:42 +09:00
parent 2a961704a8
commit 1c2a43fa61
12 changed files with 124 additions and 4 deletions

View File

@@ -1,14 +0,0 @@
using MikuSB.GameServer.Server.CallGS;
using MikuSB.Proto;
namespace MikuSB.GameServer.Server.Packet.Recv.Player;
[Opcode(CmdIds.ReqCallGS)]
public class HandlerReqCallGS : Handler
{
public override async Task OnHandle(Connection connection, byte[] data, ushort seqNo)
{
var req = ReqCallGS.Parser.ParseFrom(data);
await CallGSRouter.Route(connection, req, seqNo);
}
}