cromulant/cromulant/main.py

24 lines
418 B
Python

from __future__ import annotations
from .config import Config
from .utils import Utils
from .ants import Ants
from .window import Window
from .game import Game
from .settings import Settings
def main() -> None:
Config.prepare()
Utils.prepare()
Window.prepare()
Ants.prepare()
Settings.prepare()
Game.prepare()
Game.start_loop()
Window.start()
if __name__ == "__main__":
main()