Added shelter and things needed for it (incomplete)

This commit is contained in:
2026-03-29 10:14:12 -04:00
parent cf8d0be319
commit 18a0fd249c
5 changed files with 50 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
from data.cat import Cat
from systems.ui import clear, title
from systems.world import shelter
import questionary
import systems.ui as ui
class Game:
@@ -19,7 +19,7 @@ class Game:
def run(self):
title()
print("Welcome to Whiskerbound!")
choice = questionary.select("", choices=["New Game", "Quit"]).ask()
choice = ui.select("", choices=["New Game", "Quit"])
if choice == "New Game":
self.new_game()