Files
KianaBH3/GameServer/Server/Packet/Send/Test/PacketSelectNewStigmataRuneRsp.cs
2025-06-15 21:44:11 +08:00

19 lines
464 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Item;
public class PacketSelectNewStigmataRuneRsp : BasePacket
{
public PacketSelectNewStigmataRuneRsp(uint selectUniqueId, bool isSelect) : base(CmdIds.SelectNewStigmataRuneRsp)
{
var proto = new SelectNewStigmataRuneRsp
{
SelectUniqueId = selectUniqueId,
IsSelect = isSelect
};
SetData(proto);
}
}