forked from easonabc-public/paia-hw5
11 lines
135 B
Python
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,
|
|
}
|
|
|