DB/EmoteAnims: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Created page with "==0.5.3.3368== struct EmoteAnimsRec { uint32_t m_ID; uint32_t m_ProcessedAnimIndex; {{Template:Type|stringref}} m_AnimName; };")
 
mNo edit summary
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==0.5.3.3368==
{{Template:Sandbox/VersionRange|min_expansionlevel=0|max_expansionlevel=0|min_build=0.5.3.3368|max_build=0.6.0.3592}}
  struct EmoteAnimsRec
 
{
  struct EmoteAnimsRec {
   uint32_t m_ID;
   uint32_t m_ID;
   uint32_t m_ProcessedAnimIndex;
   uint32_t m_ProcessedAnimIndex; // internal sort index, <code>g_animationNames.IndexOf(m_AnimName)</code>
   {{Template:Type|stringref}} m_AnimName;
   {{Template:Type|stringref}} m_AnimName;
  };
  };
[[Category:DBC]]
[[Category:DBC_Alpha]]

Latest revision as of 21:40, 1 January 2020

PreVanilla (0.5.3.3368) … PreVanilla (0.6.0.3592)

struct EmoteAnimsRec {
  uint32_t m_ID;
  uint32_t m_ProcessedAnimIndex;  // internal sort index, g_animationNames.IndexOf(m_AnimName)
  stringref m_AnimName;
};