cirnogodot/Scripts/IDestructible.cs
2025-02-11 19:00:01 +01:00

6 lines
No EOL
140 B
C#

public interface IDestructible
{
public void Hit(float damage, DamageType type = DamageType.Neutral);
public bool IsDestroyed();
}