using System; namespace Weapons.Scripts { public interface IDamageable { event Action UpdateHealth; void Hit(float damage, bool crit = false); } }