2021-01-05 12:10:20 +00:00

10 lines
188 B
C#

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