diff --git a/Algorithm/PathFinding/Grid.php b/Algorithm/PathFinding/Grid.php index 8b1378917..7b9110e9e 100644 --- a/Algorithm/PathFinding/Grid.php +++ b/Algorithm/PathFinding/Grid.php @@ -1 +1,39 @@ +nullNode; + } + + public function setNullNode(Node $nullNode) : void + { + $this->nullNode = $nullNode; + } +}