()
| 303 | All the commands are listed here. |
| 304 | """ |
| 305 | def main_screen(): |
| 306 | os.system('clear') |
| 307 | |
| 308 | # Displaying the Title |
| 309 | print("\t#############################################\n") |
| 310 | print("\t🎮 Welcome to TEXVENTURE ROG 🎮\n") |
| 311 | print("\t#############################################\n") |
| 312 | |
| 313 | # Displaying the Main Menu |
| 314 | print("\n\t\tMain Menu\n ") |
| 315 | print("\t\t[1] Play Game > type 'play'\n") |
| 316 | print("\t\t[2] Help > type 'help'\n") |
| 317 | print("\t\t[3] Quit > type 'quit'\n") |
| 318 | print("\n\t\tMade with ❤️ and 🐍 by RAO.exe\n") |
| 319 | |
| 320 | # Calling the main screen selection function |
| 321 | main_screen_selection() |
| 322 | |
| 323 | |
| 324 | # ---- Game Interactions ---- # |
no test coverage detected