public Coordinate(SimpleCoordinate c) { x = c.x; y = c.y; type = c.type; visited = false; positionObject = null; Heuristic = 0; }
public Coordinate(int x, int y, MazeID id) { this.x = x; this.y = y; this.visited = false; this.type = id; this.positionObject = null; this.Heuristic = 0; }
public SimpleCoordinate(int xx, int yy, MazeID t) { x = xx; y = yy; type = t; }