diff options
Diffstat (limited to 'Scripts/GlobalVariables.gd')
-rw-r--r-- | Scripts/GlobalVariables.gd | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Scripts/GlobalVariables.gd b/Scripts/GlobalVariables.gd new file mode 100644 index 0000000..6a77bc6 --- /dev/null +++ b/Scripts/GlobalVariables.gd @@ -0,0 +1,6 @@ +extends Node + +## When player is dragging to find other [NumberNodes] +var is_snapping : bool = false +## Player, please assign yourself here at _ready(): +var player : Player |