Core/Packets: Implemented SMSG_GAME_OBJECT_UI_ACTION

This commit is contained in:
hondacrx
2018-01-03 23:40:54 -05:00
parent 9c47d1a599
commit 552a793486
2 changed files with 26 additions and 0 deletions
@@ -135,4 +135,18 @@ namespace Game.Network.Packets
public uint CustomAnim;
public bool PlayAsDespawn;
}
class GameObjectUIAction : ServerPacket
{
public GameObjectUIAction() : base(ServerOpcodes.GameObjectUiAction, ConnectionType.Instance) { }
public override void Write()
{
_worldPacket.WritePackedGuid(ObjectGUID);
_worldPacket.WriteInt32(UILink);
}
public ObjectGuid ObjectGUID;
public int UILink;
}
}