blob: 3b1c75c584f1cc8889d6caeaca7ebb59100e1f18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <vector>
#include "Pathfinder.h"
class BreadthFirstPathfinder : public Pathfinder {
using Pathfinder::Pathfinder;
public:
virtual void find_between(const XY &, const XY &);
private:
std::vector<Path> find_step(const std::vector<Path> &);
XY end;
};
|