added prices to remix

This commit is contained in:
2025-10-21 16:29:02 +11:00
parent 28b2172bc8
commit 5647cd4c07
13 changed files with 305 additions and 12 deletions

8
price_panel.gd Normal file
View File

@@ -0,0 +1,8 @@
class_name PricePanel
extends PanelContainer
@export var label: Label
func set_price(price: int) -> void:
label.text = "$" + str(price)