public PetAction(float time, PetActionType type, int _id, int _damage, int _dander, int _blood) { this.Time = time; this.Type = (int)type; this.id = _id; this.damage = _damage; this.blood = _blood; this.dander = _dander; }
public void SetSpell(SpellId id, PetActionType type) { Raw = (uint)id; Type = type; }
public PetActionEntry(uint raw) { Type = 0; m_ActionId = 0; Raw = raw; }
public void SetSpell(SpellId id, PetActionType type) { this.Raw = (uint)id; this.Type = type; }
public PetActionEntry(uint raw) { this.Type = (PetActionType)0; this.m_ActionId = 0U; this.Raw = raw; }