Add new components: BrickThrowComponent, BulletComponent, CageComponent, ChaseLevelComponent, CleanupComponent, and ThrowInputResource classes; implement game saving and loading logic in SaveSystem

This commit is contained in:
2025-08-12 13:12:16 +02:00
parent 2dc4306be8
commit 56da6f36a7
12 changed files with 399 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
using Godot;
namespace Mr.BrickAdventures.scripts.components;
public partial class CleanupComponent : Node
{
public void CleanUp()
{
Owner.QueueFree();
}
}