From 162e42847837329c6c257a9208974a1e170d5b62 Mon Sep 17 00:00:00 2001 From: techrunner Date: Sun, 7 Apr 2024 14:06:05 -0500 Subject: [PATCH] Added game_window script --- Assets/scripts/game_window.gd | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Assets/scripts/game_window.gd diff --git a/Assets/scripts/game_window.gd b/Assets/scripts/game_window.gd new file mode 100644 index 0000000..11bd378 --- /dev/null +++ b/Assets/scripts/game_window.gd @@ -0,0 +1,11 @@ +extends Window + + +# Called when the node enters the scene tree for the first time. +func _ready(): + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta): + pass