summaryrefslogtreecommitdiff
path: root/scenes/levels/base_level.gd
blob: a296a3cf5a7735181436c6fa9b8b5f5559a4eee5 (plain)
1
2
3
4
5
6
7
8
9
10
extends Node2D

onready var pause_menu = $PauseMenu

# Called when the node enters the scene tree for the first time.
func _ready():
	pass # Replace with function body.

func _on_MenuButton_on_click():
	pause_menu.pause()