summaryrefslogtreecommitdiff
path: root/scenes/main.gd
diff options
context:
space:
mode:
authorZoey Kitt <zoey.kitt@outlook.com>2024-11-16 15:51:49 -0600
committerZoey Kitt <zoey.kitt@outlook.com>2024-11-16 16:47:03 -0600
commit68bfe8975892971b8e61843c521ffac693608540 (patch)
tree0918e5aecebe79b15cb95ddb2e944f9a64a68001 /scenes/main.gd
parentc92e9a17a8ddb45f3fc3450dce7a6bea68e492b3 (diff)
Move the main window under Clipette's text box
Diffstat (limited to 'scenes/main.gd')
-rw-r--r--scenes/main.gd2
1 files changed, 2 insertions, 0 deletions
diff --git a/scenes/main.gd b/scenes/main.gd
index c984f43..1d9c503 100644
--- a/scenes/main.gd
+++ b/scenes/main.gd
@@ -6,6 +6,8 @@ var net_worth: Big
func _ready() -> void:
_on_microgame_spawn_timer_timeout()
net_worth = Big.new(1000)
+
+ get_window().position = Vector2(450, 360)
# Called every frame. 'delta' is the elapsed time since the previous frame.