This commit is contained in:
2026-01-31 23:24:13 +02:00
parent be0c819c8b
commit 12c1360ae7
58 changed files with 1902 additions and 238 deletions
+13
View File
@@ -0,0 +1,13 @@
using Godot;
namespace fgj26.Scripts.Common;
public partial class ProjectileParent : Node2D
{
public static ProjectileParent Instance;
public override void _Ready()
{
Instance = this;
}
}