mirror of
https://github.com/nasa/trick.git
synced 2025-01-03 03:46:44 +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
|