using System.Collections; using System.Collections.Generic; using UnityEngine; public interface IHealthSystem { public void Heal(float ammount); public void TakeDamage(float ammount); public bool IsDead(); public float CurrentHealth(); }