Exploding barrels

This commit is contained in:
MaddoScientisto 2024-06-09 00:34:36 +02:00
commit 71eeb3f1d1
12 changed files with 132 additions and 20 deletions

6
Scripts/IDestructible.cs Normal file
View file

@ -0,0 +1,6 @@
public interface IDestructible
{
public void Hit(float damage);
public bool IsDestroyed();
}