11 lines
235 B
GDScript
11 lines
235 B
GDScript
extends Interaction
|
|
|
|
@onready var cleaningInterface:Window = $CleaningMenu
|
|
|
|
func _ready():
|
|
add_action("Dry Cleaning", open_cleaning_window)
|
|
|
|
func open_cleaning_window():
|
|
cleaningInterface.popup_centered()
|
|
cleaningInterface.opened()
|