everything_has_a_price_jam/gui/production_display.gd
2026-09-26 12:37:45 -06:00

11 lines
255 B
GDScript

extends Control
@export var production: Production
func _ready() -> void:
%Name.text = production.currency.name
%Amount.text = str(production.amount)
func _on_inspect_button_pressed() -> void:
UserContext.currency_inspect.emit(production.currency)