15 lines
149 B
C++
15 lines
149 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include "math.hpp"
|
|
|
|
namespace pathfinder {
|
|
|
|
using Path = std::vector<TilePos>;
|
|
|
|
class PathFinderBase {
|
|
|
|
};
|
|
}
|