3738394041424344
private AI ai = null; public AIEngine(WView v) { view = v; board = new Board(); ai = new AI(board, this); }
293031323334353637
private Game game = null; public ServerEngine(Game g) { game = g; board = new Board(); Settings.topColor = 0; Settings.bottomColor = 1; }