This commit is contained in:
2026-06-25 15:40:40 -04:00
parent fc81a46dd9
commit 988ddf1ebf
5 changed files with 51 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
from untitled import ui
from untitled.screens import shop
def options():
@@ -10,3 +11,9 @@ def options():
return "save"
case "Save and quit":
return "savequit"
def go_to(save):
match ui.select("Where do you want to go?", ["The shop", "Back"]):
case "The shop":
shop.shop(save)