aboutsummaryrefslogtreecommitdiff
path: root/client/menu/warning_popup.gd
blob: 2074183438c4490ff1e913289a2cbca76cf83fa3 (plain)
1
2
3
4
5
6
7
8
9
extends Menu
class_name WarningPopup

func _ready():
	print(self.data)
	$CenterContainer/Panel/MarginContainer/VBoxContainer/Message.text = self.data

func _on_accept_pressed():
	exit()