mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
7 lines
No EOL
190 B
C#
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();
|
|
} |