ecs #58

Merged
raphael merged 70 commits from ecs into main 2023-11-03 15:29:36 +00:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit 6cf88cb261 - Show all commits

View file

@ -1,3 +1,15 @@
""" """
Module d'exemple de l'utilisation du moteur de jeu. Module d'exemple de l'utilisation du moteur de jeu.
""" """
from engine import Scene, start_game
from plugins import display, inputs, render
start_game(
display.PLUGIN + inputs.PLUGIN + render.PLUGIN,
{
"menu": Scene([], [], []),
},
"menu",
)