From bf7c1ab2a71996efb017c5d4bfe191f2a250ac78 Mon Sep 17 00:00:00 2001 From: Jan Mrna Date: Fri, 26 Sep 2025 17:50:28 +0200 Subject: [PATCH] Added pathfinder src file --- cpp/src/pathfinder.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cpp/src/pathfinder.hpp diff --git a/cpp/src/pathfinder.hpp b/cpp/src/pathfinder.hpp new file mode 100644 index 0000000..fe7bcee --- /dev/null +++ b/cpp/src/pathfinder.hpp @@ -0,0 +1,12 @@ +#pragma once + +#include "math.hpp" + +namespace pathfinder { + + using Path = std::vector; + + class PathFinderBase { + + }; +}