Files
pathfinding_demo/cpp/src/pathfinder.hpp
2025-09-27 09:55:32 +02:00

15 lines
149 B
C++

#pragma once
#include <vector>
#include "math.hpp"
namespace pathfinder {
using Path = std::vector<TilePos>;
class PathFinderBase {
};
}