6 lines
149 B
C++
Raw Normal View History

2016-02-18 16:14:44 -06:00
#ifndef FINDPATH_HH
#define FINDPATH_HH
#include "arena.hh"
std::vector<Point> FindPath( GridSquare* origin, GridSquare* goal, Arena* arena);
#endif