This repository has been archived on 2019-12-09. You can view files and clone it, but cannot push or open issues or pull requests.
pacman2/pac-man.py

8 lines
95 B
Python
Raw Normal View History

2019-11-23 10:46:25 +01:00
#!/bin/python3
from engine.game import Game
from scenes.lvl0 import scene
Game(scene).run()