using UnityEngine; namespace GameLogic.Combat.Hero { public interface IHero { Vector3 dotPos { get; } bool IsEnemy{ get; set; } bool isDie{ get; set;} T GetThis<T>() where T : IHero; GameObject GameObject { get; } } }