This commit is contained in:
Kylin_on_Mac
2022-05-26 10:11:54 +08:00
parent 458bf2fa46
commit d7939d35df
3 changed files with 23 additions and 16 deletions

View File

@ -2,8 +2,8 @@ import sys
from os import path
sys.path.append(path.dirname(__file__))
from mlgame.argument.tool import read_json_file, parse_config
from src.game import EasyGame
from mlgame.utils.parse_config import read_json_file, parse_config
from .src.game import EasyGame
config_file = path.join(path.dirname(__file__), "game_config.json")
@ -16,5 +16,6 @@ GAME_PARAMS = parse_config(config_data)
GAME_SETUP = {
"game": EasyGame,
"ml_clients": EasyGame.ai_clients(),
# "dynamic_ml_clients":True
}