Package basicObjects.boardObjects

Examples of basicObjects.boardObjects.Board


    private static Board board = null;

    public static Board getInstanceOfBoard(String boardType) {
        if (board == null) {
            if (boardType.equals("NORMAL")) {
                board = new Board();
            } //this is to allow for other boards to be added in, in the future
        }
        return board;
    }
View Full Code Here


    private Board board;
    private Node parent;
    private ArrayList<Node> childrenNodes = new ArrayList();

    public Node() {
        this.board = new Board();
    }
View Full Code Here

    private int nodeCount;
    private Node rootNode;

    public ArtificalInteligence(Board board) {
        Board newBoard = new Board(board);
        rootNode = new Node(newBoard);
    }
View Full Code Here

TOP

Related Classes of basicObjects.boardObjects.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.