redo screen system

This commit is contained in:
2026-06-24 18:10:41 -04:00
parent f40565d861
commit b86b3af5a3
5 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from untitled import ui
def options():
while True:
match ui.select("Please choose an option:", ["Save", "Save and quit", "Back"]):
case "Back":
return "back"
case "Save":
return "save"
case "Save and quit":
return "savequit"