mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
19 lines
464 B
C#
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);
|
|
}
|
|
}
|