cirnogodot/Scripts/IDestructible.cs

6 lines
140 B
C#
Raw Normal View History

2024-06-09 00:34:36 +02:00
public interface IDestructible
{
2025-02-11 19:00:01 +01:00
public void Hit(float damage, DamageType type = DamageType.Neutral);
2024-06-09 00:34:36 +02:00
public bool IsDestroyed();
}