11 lines
255 B
GDScript
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)
|