This commit is contained in:
2026-06-25 16:02:01 -04:00
parent c1a5361255
commit f61889195c
6 changed files with 82 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
from untitled import ui
from untitled.screens import shop
from untitled.screens import shop, work
def options():
@@ -14,6 +14,8 @@ def options():
def go_to(save):
match ui.select("Where do you want to go?", ["The shop", "Back"]):
match ui.select("Where do you want to go?", ["The shop", "Work", "Back"]):
case "The shop":
shop.shop(save)
case "Work":
work.work(save)