mirror of
https://github.com/nasa/trick.git
synced 2025-01-04 20:34:12 +00:00
6 lines
149 B
C++
6 lines
149 B
C++
#ifndef FINDPATH_HH
|
|
#define FINDPATH_HH
|
|
#include "arena.hh"
|
|
std::vector<Point> FindPath( GridSquare* origin, GridSquare* goal, Arena* arena);
|
|
#endif
|