chore: move stigmata to correct folder

This commit is contained in:
Naruse
2025-06-15 21:47:59 +08:00
parent 27b1284dcc
commit 22cbf44bcf
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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);
}
}