Package pdp.scrabble.ihm

Examples of pdp.scrabble.ihm.GameStatisticsModelImpl


    this.board = FACTORY.createBoard();
    this.dictionary = FACTORY.createDictionary();
    this.dictionary.initWithLanguage(language);
    this.players = new ArrayList<Player>(1);
    this.playerTurn = -1;
    this.stats = new GameStatisticsModelImpl();
    this.gameThread = null;
    this.alive = false;
  }
View Full Code Here


    public AbstractEngine(GameEnvironment env) {
  gameEnv = env;
  globalTurn = 0;
  gameThread = new GameThread(this);
  stats = new GameStatisticsModelImpl();
    }
View Full Code Here

TOP

Related Classes of pdp.scrabble.ihm.GameStatisticsModelImpl

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.