cirnogodot/Scripts/IDestructible.cs
2025-02-15 17:51:06 +01:00

7 lines
No EOL
190 B
C#

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