diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 20:45:46 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 20:45:46 -0600 |
commit | 05edc5e0909db8b4d48c971c8b2680a71997bb1f (patch) | |
tree | 075014d60924feabc143bb1f01e13f2e29bb7515 /scenes/stockticker/transactions.gd | |
parent | 73f8e11d939ffbffbc7e7fc96673d09f28c90647 (diff) | |
parent | 68459cebbc082aef2cab614608cd605e7cf54b5f (diff) |
Merge branch 'main-window'
Diffstat (limited to 'scenes/stockticker/transactions.gd')
-rw-r--r-- | scenes/stockticker/transactions.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scenes/stockticker/transactions.gd b/scenes/stockticker/transactions.gd index daff901..39e25b9 100644 --- a/scenes/stockticker/transactions.gd +++ b/scenes/stockticker/transactions.gd @@ -15,3 +15,7 @@ func _on_stonks_sell(amount: Variant) -> void: print("+$%s" % amount.toString()) sell.emit(amount) + +# Scope creep! +func start(): + $Timer.start() |