7-14-25 1:27PM

This commit is contained in:
2025-07-14 13:27:07 -04:00
parent 0a5f6be26d
commit be4a1fc794
16 changed files with 291 additions and 106 deletions

15
Gameplay/Globals.cs Normal file
View File

@@ -0,0 +1,15 @@
using Godot;
using System;
public partial class Globals : Node
{
public static Globals Instance;
public bool _anyMovement;
public Battle _currentBattle;
public override void _Ready()
{
Instance = this;
}
}