Files
project-reset/Assets/Scripts/Units/IKillable.cs

10 lines
219 B
C#

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