Example #1
0
		public void SetValues(int cd, AISpellCastTargetType targetType)
		{
			SetCooldown(cd);
			TargetType = targetType;
		}
Example #2
0
		public void SetTarget(AISpellCastTargetType targetType)
		{
			TargetType = targetType;
		}
Example #3
0
		public void SetValues(int cdMin, int cdMax, AISpellCastTargetType targetType)
		{
			SetCooldown(cdMin, cdMax);
			TargetType = targetType;
		}