From e38658feff7d23ccbecdecfd981bac3cf0203e7c Mon Sep 17 00:00:00 2001 From: Flavien Normand Date: Sat, 28 Mar 2020 14:24:31 +0100 Subject: [PATCH] Add struct for UpdatePositionInstance --- src/common/Network/PacketDef/Zone/ClientZoneDef.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/common/Network/PacketDef/Zone/ClientZoneDef.h b/src/common/Network/PacketDef/Zone/ClientZoneDef.h index d486ee42..bf698237 100644 --- a/src/common/Network/PacketDef/Zone/ClientZoneDef.h +++ b/src/common/Network/PacketDef/Zone/ClientZoneDef.h @@ -56,6 +56,17 @@ struct FFXIVIpcUpdatePosition : /* 0008 */ Common::FFXIVARR_POSITION3 position; /* 000C */ uint8_t unk[ 4 ]; // padding? }; + + struct FFXIVIpcUpdatePositionInstance : + FFXIVIpcBasePacket< UpdatePositionInstance > +{ + /* 0000 */ float rotation; + /* 0004 */ float interpolateRotation; + /* 0008 */ uint32_t flags; + /* 000C */ Common::FFXIVARR_POSITION3 position; + /* 0018 */ Common::FFXIVARR_POSITION3 interpolatePosition; + /* 0024 */ uint32_t unknown; +}; struct FFXIVIpcSkillHandler :