nj0/main.py

8 lines
155 B
Python
Executable File

from model import world
from gui import app
if __name__ == '__main__':
world = world.World()
application = app.App(world)
application.start()