cirnogodot/Scripts/IDestructible.cs
2024-06-09 00:34:36 +02:00

6 lines
No EOL
102 B
C#

public interface IDestructible
{
public void Hit(float damage);
public bool IsDestroyed();
}