diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-11-15 19:15:35 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-11-15 19:15:35 -0600 |
commit | 7059818b6fc7a1ce7a305b07ec3e5870ac31ec99 (patch) | |
tree | 8e544f91fa06cd7512b763722bbfaffee0d2a282 /stonks.gd | |
parent | 29983fef392ab37c6ccbddab28efe3d97746b1fa (diff) |
add stock screen
Diffstat (limited to 'stonks.gd')
-rw-r--r-- | stonks.gd | 15 |
1 files changed, 15 insertions, 0 deletions
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. |