using UnityEngine; namespace EmeraldAI { /// /// Used to allow AI to detect which objects/abilities they should avoid. /// The AbilityTarget is used to determine which target the ability is intended for. /// public interface IAvoidable { Transform AbilityTarget { get; set; } } }