ponguito/src/main.py
Raphaël 3cb2ff9825 Adaptation au nouvel ecs (#3)
Reviewed-on: #3
Reviewed-by: Tipragot <contact@tipragot.fr>
Co-authored-by: Raphaël <r.lauray@outlook.fr>
Co-committed-by: Raphaël <r.lauray@outlook.fr>
2024-01-05 16:26:30 +00:00

11 lines
185 B
Python

"""
Module d'exemple de l'utilisation du moteur de jeu.
"""
from engine import start_game
from plugins import defaults
from scenes import menu
start_game(defaults.PLUGIN, menu.MENU)