mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
18 lines
436 B
C#
18 lines
436 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Player;
|
|
|
|
public class PacketGetPlayerCardRsp : BasePacket
|
|
{
|
|
public PacketGetPlayerCardRsp() : base(CmdIds.GetPlayerCardRsp)
|
|
{
|
|
var proto = new GetPlayerCardRsp
|
|
{
|
|
Retcode = GetPlayerCardRsp.Types.Retcode.Fail, // set to fail to prevent null reference error pop up
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|