using Godot; using System; public partial class Globals : Node { public static Globals Instance; public bool _anyMovement; public Vector2 _screenSize; public Vector2 _screenCenter; public Battle _currentBattle; public override void _Ready() { Instance = this; } }