Package tud.gamecontroller.scrambling

Examples of tud.gamecontroller.scrambling.GameScrambler


  }
 
  public void run() throws InterruptedException{
    GameScramblerInterface gameScrambler;
    if(getScrambleWordListFile()!=null){
      gameScrambler=new GameScrambler(getScrambleWordListFile());
    }else{
      gameScrambler=new IdentityGameScrambler();
    }

    Game<TermType, ReasonerStateInfoType> game=getGame();
View Full Code Here

TOP

Related Classes of tud.gamecontroller.scrambling.GameScrambler

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.