summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Janzen <jacob.a.s.janzen@gmail.com>2024-11-16 08:23:23 -0600
committerJacob Janzen <jacob.a.s.janzen@gmail.com>2024-11-16 08:23:23 -0600
commit4c5307a025ca857ab9fe2b1be6f4d79a0c523008 (patch)
tree64f3ccd32d685d73b50bbe500d1c7dab55a7c336
parent524bcdf6570b517d75d4b1617e7c09172fe3cde2 (diff)
minor refactor
-rw-r--r--scenes/stockticker/Stock Ticker.tscn2
-rw-r--r--scenes/stockticker/buy_n_sell.gd (renamed from scenes/buy_n_sell.gd)0
-rw-r--r--scenes/stockticker/stonks.gd2
3 files changed, 2 insertions, 2 deletions
diff --git a/scenes/stockticker/Stock Ticker.tscn b/scenes/stockticker/Stock Ticker.tscn
index 122bdfc..9352ef8 100644
--- a/scenes/stockticker/Stock Ticker.tscn
+++ b/scenes/stockticker/Stock Ticker.tscn
@@ -3,7 +3,7 @@
[ext_resource type="Texture2D" uid="uid://voruypgyi77e" path="res://scenes/stockticker/UI-Background-Colour.png" id="1_wbfee"]
[ext_resource type="Script" path="res://scenes/stockticker/stonks.gd" id="2_pan4m"]
[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="3_dv3dr"]
-[ext_resource type="Script" path="res://scenes/buy_n_sell.gd" id="4_l8sru"]
+[ext_resource type="Script" path="res://scenes/stockticker/buy_n_sell.gd" id="4_l8sru"]
[ext_resource type="Texture2D" uid="uid://vie3nmimge1t" path="res://scenes/stockticker/BuyButton.png" id="5_mpf30"]
[ext_resource type="Texture2D" uid="uid://dvidbk3clx6dn" path="res://scenes/stockticker/BuyButtonPressed.png" id="6_styy2"]
[ext_resource type="Texture2D" uid="uid://dw8wpd47me7wu" path="res://scenes/stockticker/SellButton.png" id="7_h6hir"]
diff --git a/scenes/buy_n_sell.gd b/scenes/stockticker/buy_n_sell.gd
index be0e777..be0e777 100644
--- a/scenes/buy_n_sell.gd
+++ b/scenes/stockticker/buy_n_sell.gd
diff --git a/scenes/stockticker/stonks.gd b/scenes/stockticker/stonks.gd
index 9b7b845..fefc340 100644
--- a/scenes/stockticker/stonks.gd
+++ b/scenes/stockticker/stonks.gd
@@ -18,7 +18,7 @@ func _ready() -> void:
label.text = "Price:\n$%f" % start_val
price_history.push_front(start_val)
-
+
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(delta: float) -> void:
pass