add description and logo on game_config.json

This commit is contained in:
Kylin_on_Mac
2022-05-06 09:26:57 +08:00
parent da3cdbba9b
commit 4272ddc7d1
11 changed files with 42 additions and 103 deletions

View File

@ -1,9 +1,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 os import path
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 +15,6 @@ GAME_PARAMS = parse_config(config_data)
GAME_SETUP = {
"game": EasyGame,
"ml_clients": EasyGame.ai_clients(),
# "dynamic_ml_clients":True
}