From 7059818b6fc7a1ce7a305b07ec3e5870ac31ec99 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Fri, 15 Nov 2024 19:15:35 -0600 Subject: add stock screen --- stonks.gd | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 stonks.gd (limited to 'stonks.gd') diff --git a/stonks.gd b/stonks.gd new file mode 100644 index 0000000..a853edf --- /dev/null +++ b/stonks.gd @@ -0,0 +1,15 @@ +extends Node2D + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + pass # Replace with function body. + + +# Called every frame. 'delta' is the elapsed time since the previous frame. +func _process(delta: float) -> void: + pass + + +func _on_timer_timeout() -> void: + pass # Replace with function body. -- cgit v1.2.3