cirnogodot/Scripts/IDestructible.cs

7 lines
190 B
C#
Raw Normal View History

2024-06-09 00:34:36 +02:00
public interface IDestructible
{
2025-02-15 17:51:06 +01:00
public BulletOwner BulletGroup { get; set; }
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();
}