9 lines
141 B
C#
9 lines
141 B
C#
namespace HQFPSWeapons
|
|
{
|
|
public interface IDamageable
|
|
{
|
|
void TakeDamage(HealthEventData damageData);
|
|
|
|
LivingEntity GetEntity();
|
|
}
|
|
} |