namespace Script.Gameplay.Interface
{
public interface IDamageable
public void TakeDamage(int damage);
public void Heal(int heal);
}