using System; using UnityEngine; public interface ITarget { int id{get;} Vector3 position{get;} Vector3 heartPos{get;} void MakeDamage(Bullet bullet); void MakeHeal(Bullet bullet); bool IsDead(); bool CanShoot(); }