8 lines
95 B
Python
8 lines
95 B
Python
|
#!/bin/python3
|
||
|
|
||
|
from engine.game import Game
|
||
|
from scenes.lvl0 import scene
|
||
|
|
||
|
|
||
|
Game(scene).run()
|