feat: add dress system

This commit is contained in:
Naruse
2025-06-17 09:42:42 +08:00
parent a9c362f224
commit 7f4e4b38c5
6 changed files with 44 additions and 35 deletions

View File

@@ -1,17 +0,0 @@
using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.Test;
public class PacketSetDressRsp : BasePacket
{
public PacketSetDressRsp() : base(CmdIds.SetDressRsp)
{
var proto = new SetDressRsp
{
};
SetData(proto);
}
}