public SimpleAI(String name, int id, GameEnvironment env) {
this.name = name;
this.id = id;
this.env = env;
Game game = new GameImpl("blob", null); // TODO create game adapter to GameEnvironement & GameEngine
this.deleg = new PlayerImpl(game, "name", id, true, new AIConfigImpl(SearchLevel.EASY, SearchStrategy.AUTOMATIC, SearchPriority.HIGHER_SCORE));
}