Added pathfinder src file

This commit is contained in:
Jan Mrna 2025-09-26 17:50:28 +02:00
parent 9913d5b938
commit bf7c1ab2a7

12
cpp/src/pathfinder.hpp Normal file
View File

@ -0,0 +1,12 @@
#pragma once
#include "math.hpp"
namespace pathfinder {
using Path = std::vector<TilePos>;
class PathFinderBase {
};
}