DB/AreaTriggerActionSet: Difference between revisions

From wowdev
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:
  struct AreaTriggerActionSetRec {
  struct AreaTriggerActionSetRec {
   uint32_t m_ID;
   uint32_t m_ID;
  enum
  {
    flag_allowed_while_ghost = 8,
    flag_allowed_while_dead = 16,
  };
   uint32_t m_flags;
   uint32_t m_flags;
  };
  };
[[Category:DBC]]
[[Category:DBC]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]
[[Category:DBC_WoD]][[Category:6.0.1.18179]]

Revision as of 00:54, 18 August 2015

6.0.1.18179

struct AreaTriggerActionSetRec {
  uint32_t m_ID;
  enum
  {
    flag_allowed_while_ghost = 8,
    flag_allowed_while_dead = 16,
  };
  uint32_t m_flags;
};