7 lines
117 B
Python
7 lines
117 B
Python
from pathlib import Path
|
|
|
|
from src.game.Game import Game
|
|
|
|
programPath = Path(".").resolve()
|
|
game = Game(programPath)
|