Files
elironwars-python/menu.py
T
Benjamin Baudouin 0b081682c5 init
2026-05-13 21:18:37 +02:00

27 lines
475 B
Python

# def main_loop(breaker:bool):
# pass
# def menu ():
# print("Nouvelle partie :\t1")
# print("Charger :\t\t2")
# print("Option :\t\t3")
# print("Quitter :\t\t4")
# return int(input("Choix : "))
# choix = menu()
# match choix:
# case 1:
# print("Nouvelle partie")
# case 2:
# print("Charger")
# case 3:
# print("Option")
# case 4:
# print("Quitter")
# case _:
# print("Mauvais choix")