Example #1
0
 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;
 }
Example #2
0
 public void SetSpell(SpellId id, PetActionType type)
 {
     Raw  = (uint)id;
     Type = type;
 }
Example #3
0
 public PetActionEntry(uint raw)
 {
     Type       = 0;
     m_ActionId = 0;
     Raw        = raw;
 }
Example #4
0
		public void SetSpell(SpellId id, PetActionType type)
		{
			Raw = (uint)id;
			Type = type;
		}
Example #5
0
		public PetActionEntry(uint raw)
		{
			Type = 0;
			m_ActionId = 0;
			Raw = raw;
		}
Example #6
0
 public void SetSpell(SpellId id, PetActionType type)
 {
     this.Raw  = (uint)id;
     this.Type = type;
 }
Example #7
0
 public PetActionEntry(uint raw)
 {
     this.Type       = (PetActionType)0;
     this.m_ActionId = 0U;
     this.Raw        = raw;
 }