gtn/src/main.py

18 lines
288 B
Python
Raw Normal View History

"""
2023-10-28 12:42:03 +00:00
Example de l'utilisation du moteur de jeu.
"""
2023-10-28 21:23:23 +00:00
2023-10-28 21:48:47 +00:00
from engine import start_game
2023-10-29 18:49:06 +00:00
from scenes import directory_search, menu
start_game(
2023-10-28 21:48:47 +00:00
{
"menu": menu.SCENE,
2023-10-29 18:49:06 +00:00
"directory_search": directory_search.SCENE,
2023-10-28 21:48:47 +00:00
},
2023-10-29 18:49:06 +00:00
"directory_search",
title="Guess The Number",
)