delurbelako/scripts/gui/construction_button.gd
2025-10-11 09:45:23 +05:00

9 lines
193 B
GDScript

extends Button
@export var constructible : Constructible
func _ready() -> void:
icon = constructible.preview
func _pressed() -> void:
GuiEventBus.construction_selected.emit(constructible)