Package pdp.scrabble

Examples of pdp.scrabble.Game


   
    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));
    }
View Full Code Here

TOP

Related Classes of pdp.scrabble.Game

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.