diff options
| author | tpart <tpart120@proton.me> | 2024-07-17 21:44:51 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2024-07-17 21:45:28 +0200 |
| commit | 315864c63650c7b5d7dbb6efb53dea47c4610881 (patch) | |
| tree | 85850d5e74ee165257f724817fe83fce0a8359ad /client/menu/warning_popup.gd | |
| parent | 547c7ce18391d69677b495ede8f73c5277ac017c (diff) | |
| download | hurrycurry-315864c63650c7b5d7dbb6efb53dea47c4610881.tar hurrycurry-315864c63650c7b5d7dbb6efb53dea47c4610881.tar.bz2 hurrycurry-315864c63650c7b5d7dbb6efb53dea47c4610881.tar.zst | |
Add custom warning popup for setup menu and potential future use
Diffstat (limited to 'client/menu/warning_popup.gd')
| -rw-r--r-- | client/menu/warning_popup.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/menu/warning_popup.gd b/client/menu/warning_popup.gd new file mode 100644 index 00000000..f418550b --- /dev/null +++ b/client/menu/warning_popup.gd @@ -0,0 +1,5 @@ +extends Menu +class_name WarningPopup + +func _on_accept_pressed(): + exit() |