From ea85dd5f258bdbf61169b38a5107c378e9563a88 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 20 Aug 2019 16:13:05 +0200 Subject: [PATCH] Update Grid.php --- Algorithm/PathFinding/Grid.php | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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; + } +}