mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
14 lines
397 B
C#
14 lines
397 B
C#
using KianaBH.GameServer.Server.Packet.Send.Test;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Recv.Test;
|
|
|
|
[Opcode(CmdIds.RefineStigmataRuneReq)]
|
|
public class HandlerRefineStigmataRuneReq : Handler
|
|
{
|
|
public override async Task OnHandle(Connection connection, byte[] header, byte[] data)
|
|
{
|
|
await connection.SendPacket(new PacketRefineStigmataRuneRsp());
|
|
}
|
|
}
|