IDamageable.cs 141 B

123456789
  1. namespace HQFPSWeapons
  2. {
  3. public interface IDamageable
  4. {
  5. void TakeDamage(HealthEventData damageData);
  6. LivingEntity GetEntity();
  7. }
  8. }