16 lines
307 B
C++
16 lines
307 B
C++
#ifndef GRIDWALK_H
|
|
#define GRIDWALK_H
|
|
|
|
#include "GridWalkState.h"
|
|
#include "../Grid.h"
|
|
|
|
template <typename T> class GridWalk {
|
|
|
|
public:
|
|
|
|
virtual GridWalkState<T> getDestination(Grid<T>& grid, const GridWalkState<T>& start, const float distance_m, const float headChange_rad) = 0;
|
|
|
|
};
|
|
|
|
#endif // GRIDWALK_H
|