()
| 282 | - quit |
| 283 | """ |
| 284 | def main_screen_selection(): |
| 285 | option = input("\nWhat would you like to do? 🎮\n> ") |
| 286 | |
| 287 | if option.lower() == "play": |
| 288 | play_game() |
| 289 | |
| 290 | elif option.lower() == "help": |
| 291 | help_screen() |
| 292 | |
| 293 | elif option.lower() == "quit": |
| 294 | quit_game() |
| 295 | |
| 296 | else: |
| 297 | print("\nI don't understand that command.\nPlease enter a valid command. ⚠️\n") |
| 298 | main_screen_selection() |
| 299 | |
| 300 | # ---- Main Screen ---- # |
| 301 | """ |
no test coverage detected