16 lines
217 B
C#
16 lines
217 B
C#
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;
|
|
}
|
|
}
|