challenge-editor/scene/multi_indetification_choice.gd
2024-10-05 18:44:58 +08:00

10 lines
173 B
GDScript

extends NinePatchRect
signal click
func set_text(text:String):
$Label.text=text
func _on_tool_button_pressed() -> void:
click.emit()
pass # Replace with function body.