This commit is contained in:
Auric Vente
2024-07-18 23:19:08 -06:00
parent 6cb5fdc8ec
commit d989ac45a8
5 changed files with 85 additions and 33 deletions

View File

@@ -4,6 +4,7 @@ from .config import Config
from .utils import Utils
from .ants import Ants
from .window import Window
from .game import Game
def main() -> None:
@@ -11,6 +12,9 @@ def main() -> None:
Utils.prepare()
Ants.prepare()
Window.prepare()
Game.prepare()
Game.start_loop()
Window.start()
if __name__ == "__main__":