Package vrampal.connectfour.cmdline

Examples of vrampal.connectfour.cmdline.HumanPlayerInterface


  private static final Random RAND = new Random();

  public static void main(String[] args) throws ClassNotFoundException, IOException {
    ConsoleDiplay consoleDisplay = new ConsoleDiplay();
    HumanPlayerInterface player1Itf = new HumanPlayerInterface();

    GamesData rootData = GamesData.loadFromDisk("LearningBotData.tmp");
    LearningBotPlayerInterface player2Itf = new LearningBotPlayerInterface("Red", rootData);

    GameRunner consoleGame = new GameRunner(player1Itf, player2Itf);
View Full Code Here

TOP

Related Classes of vrampal.connectfour.cmdline.HumanPlayerInterface

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.