Cow_Life_Sim_RPG/Interactions/BasketStorage/BasketStorage.gd

12 lines
246 B
GDScript

extends Interaction
func _ready():
add_action("Place Basket", place_basket)
add_action("Storage", open_storage)
func place_basket():
get_parent().show_basket_changing_window()
func open_storage():
get_parent().show_basket_storage_window()