using FL.Battle.Components; using UnityEngine; namespace FL.Battle { /// /// 可选择的目标 /// public interface ITarget { IEntity Entity { get; } bool IsMoving { get; } bool IsDead { get; } BuffsComponent Buffs { get; } ICombatCalculation Calculation { get; } Vector3 Position { get; } public Transform UIPoint { get; } } }