11 lines
235 B
GDScript
11 lines
235 B
GDScript
extends Interaction
|
|
|
|
@onready var refillingInterface:Window = $RefillingMenu
|
|
|
|
func _ready():
|
|
add_action("Refill", open_refilling_window)
|
|
|
|
func open_refilling_window():
|
|
refillingInterface.popup_centered()
|
|
refillingInterface.opened()
|