DSZI_Survival/Run.py

8 lines
150 B
Python
Raw Normal View History

from pathlib import Path
2020-04-06 09:53:27 +02:00
from src.game.Game import Game
2020-05-09 22:30:21 +02:00
# TODO: Paths are still retarded
programPath = Path(".").resolve()
game = Game(programPath)