using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IHealthSystem { public float Health { get; set; } public void TakeHealth(float ammount); public void Heal(float ammount); }