paia-hw5/TankMan/config.py

11 lines
135 B
Python

import sys
from os import path
sys.path.append(path.dirname(__file__))
from src.Game import Game
GAME_SETUP = {
"game": Game,
}