DFMapNode constructor

DFMapNode(
  1. int x,
  2. int y
)

Implementation

DFMapNode(int x, int y) {
  this.position = new DFMapPosition(x, y);
}