mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
16 lines
417 B
C#
16 lines
417 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Item;
|
|
|
|
public class PacketLockRelicScRsp : BasePacket
|
|
{
|
|
public PacketLockRelicScRsp(bool success) : base(CmdIds.LockRelicScRsp)
|
|
{
|
|
LockRelicScRsp proto = new();
|
|
|
|
if (!success) proto.Retcode = (uint)Retcode.RetFail;
|
|
|
|
SetData(proto);
|
|
}
|
|
} |