DB/CreatureDisplayInfoGeosetData: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with "==8.0.1.25902== struct CreatureDisplayInfoGeosetDataRec { uint32_t m_ID; uint8_t GeosetIndex; uint8_t GeosetValue; uint32_t DisplayId; }; Category:DBC")
 
Line 2: Line 2:
  struct CreatureDisplayInfoGeosetDataRec {
  struct CreatureDisplayInfoGeosetDataRec {
   uint32_t m_ID;
   uint32_t m_ID;
   uint8_t GeosetIndex;
   uint8_t m_GeosetType; // (meshId = m_GeosetType * 100 + m_GeosetID)
   uint8_t GeosetValue;
   uint8_t m_GeosetID;
   uint32_t DisplayId;
   uint32_t m_displayID;
  };
  };
[[Category:DBC]]
[[Category:DBC]]

Revision as of 00:38, 4 February 2018

8.0.1.25902

struct CreatureDisplayInfoGeosetDataRec {
  uint32_t m_ID;
  uint8_t m_GeosetType; // (meshId = m_GeosetType * 100 + m_GeosetID)
  uint8_t m_GeosetID;
  uint32_t m_displayID;
};