DSZI_Survival/Run.py

8 lines
170 B
Python
Raw Normal View History

from pathlib import Path
2020-05-17 00:27:53 +02:00
import sys
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()
2020-05-17 00:27:53 +02:00
game = Game(programPath, sys.argv)