mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-16 14:54:38 +01:00
feat: add equip weapon & stigmata
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using KianaBH.GameServer.Game.Player;
|
||||
using KianaBH.KcpSharp;
|
||||
using KianaBH.Proto;
|
||||
|
||||
namespace KianaBH.GameServer.Server.Packet.Send.Avatar;
|
||||
|
||||
public class PacketExchangeAvatarStigmataRsp : BasePacket
|
||||
{
|
||||
public PacketExchangeAvatarStigmataRsp(uint avatarId1, uint avatarId2, EquipmentSlot slot) : base(CmdIds.ExchangeAvatarStigmataRsp)
|
||||
{
|
||||
var proto = new ExchangeAvatarStigmataRsp
|
||||
{
|
||||
AvatarId1 = avatarId1,
|
||||
AvatarId2 = avatarId2,
|
||||
Slot = slot
|
||||
};
|
||||
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user