cirnogodot/Scripts/IDestructible.cs

6 lines
102 B
C#
Raw Normal View History

2024-06-09 00:34:36 +02:00
public interface IDestructible
{
public void Hit(float damage);
public bool IsDestroyed();
}