Cow_Life_Sim_RPG/Interactions/SunningRock/SunningRockInteration.gd

11 lines
214 B
GDScript

extends Interaction
@onready var dryingInterface:Window = $DryingMenu
func _ready():
add_action("Dry", open_drying_window)
func open_drying_window():
dryingInterface.popup_centered()
dryingInterface.opened()