root/ui/bottom_menu.gd

extends HBoxContainer


func _ready():
	var _e = $schedule_button.connect("pressed", self, "open_schedule")
	_e = $presents_button.connect("pressed", self, "open_presents")
	pass

func open_schedule():
	$"../schedule".open_with(null)

func open_presents():
	$"../presents".open()