Aura.Channel.Skills.CombatActionPack.GetTargets C# (CSharp) Method

GetTargets() public method

Returns all creatures found in this pack's target actions.
public GetTargets ( ) : Aura.Channel.World.Entities.Creature[]
return Aura.Channel.World.Entities.Creature[]
		public Creature[] GetTargets()
		{
			return this.Actions.Where(a => a.Category == CombatActionCategory.Target).Select(a => a.Creature).ToArray();
		}