This commit is contained in:
Auric Vente
2024-07-21 06:00:22 -06:00
parent 3d8ff1f167
commit b96a3f3057
4 changed files with 20 additions and 1 deletions

View File

@@ -6,6 +6,7 @@ from .ants import Ants
from .window import Window
from .game import Game
from .settings import Settings
from .filter import Filter
def main() -> None:
@@ -14,6 +15,7 @@ def main() -> None:
Window.prepare()
Ants.prepare()
Settings.prepare()
Filter.prepare()
Game.prepare()
Game.start_loop()
Window.start()