13 lines
241 B
GDScript
13 lines
241 B
GDScript
extends Node2D
|
|
|
|
@onready var gui: Gui = $Interface/Gui
|
|
@onready var planter: Planter = $Planter
|
|
|
|
func _ready() -> void:
|
|
pass # Replace with function body.
|
|
|
|
|
|
|
|
func _on_planter_seed_list_updated() -> void:
|
|
pass # Replace with function body.
|