This commit is contained in:
Kei-Luna
2026-04-22 05:31:08 +09:00
parent fe3c871992
commit 2a961704a8
6 changed files with 89 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
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);
}
}