cromulant/main.py

24 lines
375 B
Python
Raw Normal View History

2024-07-18 06:51:11 +00:00
from __future__ import annotations
from database import Database
from window import Window
from ants import Ants
def main() -> None:
Database.prepare()
Database.create()
Ants.get_all()
for ant in Ants.ants:
ant.describe()
Window.make()
Window.add_buttons()
Window.add_view()
Window.start()
if __name__ == "__main__":
main()