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 { + + }; +}