DFMapNode.newNode constructor
DFMapNode.newNode(
- DFMapPosition position,
- DFMapNode parent,
- int g,
- int h,
Implementation
DFMapNode.newNode(DFMapPosition position, DFMapNode parent, int g, int h) {
this.position = position;
this.parent = parent;
this.G = g;
this.H = h;
}