2D-Game / ChickGame / src / AI / Node.java
Node.java
Raw
package AI;

public class Node {
	
	Node parent;
	public int col;
	public int row;
	int gcost;
	int fcost;
	int hcost;
	boolean solid;
	boolean open;
	boolean checked;
	public Node(int col, int row) {
		this.col = col;
		this.row = row;
	}
}