nj0/main.py

8 lines
155 B
Python
Raw Normal View History

2024-04-03 22:20:31 +00:00
from model import world
from gui import app
if __name__ == '__main__':
world = world.World()
application = app.App(world)
application.start()