13 lines
206 B
GDScript
13 lines
206 B
GDScript
extends Scene
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
super()
|
|
pass # Replace with function body.
|
|
|
|
|
|
|
|
func _on_healers_interacted():
|
|
$healers.default_script(self)
|