Add projectiles

This commit is contained in:
2026-02-10 18:03:53 -08:00
parent 2f377d2d7a
commit 92b4e8662f
41 changed files with 2170 additions and 42 deletions

View File

@@ -53,8 +53,9 @@ public partial class DemonWall : Enemy3D
EnemyModelView.Attack(_maximumWallMoveAmount);
}
public void OnExitTree()
public new void OnExitTree()
{
base.OnExitTree();
_attackTimer.Timeout -= AttackTimer_Timeout;
}
}