sokoban
Diffstat (limited to 'globalsettings.gd')
| -rw-r--r-- | globalsettings.gd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/globalsettings.gd b/globalsettings.gd new file mode 100644 index 0000000..1ac14c5 --- /dev/null +++ b/globalsettings.gd @@ -0,0 +1,8 @@ +extends Node + +var stopwatch = false setget set_stopwatch + + +func set_stopwatch(set): + stopwatch = set + MainInstances.stopwatch.visible = stopwatch |