This commit is contained in:
Auric Vente
2024-07-20 04:48:04 -06:00
parent 6450af91be
commit 896b39eb4a
5 changed files with 59 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ from .utils import Utils
from .ants import Ants
from .window import Window
from .game import Game
from .settings import Settings
def main() -> None:
@@ -12,6 +13,7 @@ def main() -> None:
Utils.prepare()
Ants.prepare()
Window.prepare()
Settings.prepare()
Game.prepare()
Game.start_loop()
Window.start()