using UnityEngine; namespace FL.Battle { public interface IEntity { public int TableId { get; } public int EntityId { get; } /// /// Ä¿±ê×ø±ê /// public Vector3 TargetPosition { get; set; } public EEntityType EntityType { get; } public EEntityState State { get; set; } EntityAttributes Attr { get; } } }