Package net.sourceforge.java_stratego.stratego

Examples of net.sourceforge.java_stratego.stratego.Board


  private AI ai = null;
 
  public AIEngine(WView v)
  {
    view = v;
    board = new Board();
    ai = new AI(board, this);
  }
View Full Code Here


  private Game game = null;
 
  public ServerEngine(Game g)
  {
    game = g;
    board = new Board();
    Settings.topColor = 0;
    Settings.bottomColor = 1;
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.java_stratego.stratego.Board

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.