gtg again
This commit is contained in:
12
untitled/screens.py
Normal file
12
untitled/screens.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from untitled import generation, ui
|
||||
|
||||
|
||||
def adoption():
|
||||
print("Welcome to the shelter!")
|
||||
choice = "Reroll"
|
||||
while choice == "Reroll":
|
||||
choices = generation.generate_cat_choices()
|
||||
choice = ui.select(
|
||||
"Please choose a cat to adopt!",
|
||||
list(ui.Choice(cat[0], cat[1]) for cat in choices) + ["Reroll"],
|
||||
)
|
||||
Reference in New Issue
Block a user