using Reset.Core; namespace Reset.Units{ public interface IKillable : IDamageable{ public void Kill(); public float maxHealth{ get; set; } public float currentHealth{ get; set; } } }