aboutsummaryrefslogtreecommitdiff
path: root/DijkstraPathfinder.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 14:34:40 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-25 14:34:40 +0200
commitc9f5ac8722190efeb58fda1eec9e6160d5204127 (patch)
treeda9015f230d96d7abf30060de5099664c2189809 /DijkstraPathfinder.h
parent8cf389aaf748c77aecda0b3a3773c45053b0f231 (diff)
update class-diag.puml
Diffstat (limited to 'DijkstraPathfinder.h')
-rw-r--r--DijkstraPathfinder.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/DijkstraPathfinder.h b/DijkstraPathfinder.h
index 93e6943..ab21361 100644
--- a/DijkstraPathfinder.h
+++ b/DijkstraPathfinder.h
@@ -20,10 +20,6 @@ private:
unsigned int distance = -1;
XY parent;
};
- struct Neighbor {
- unsigned int distance = -1;
- XY position;
- };
Node & map_get(const XY &);
std::unordered_map<XY, Node> map;