blob: fbe45aae49be1e15541dbbbe29c7a0e0ee606ea0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _ASTAR_H
#define _ASTAR_H
#include "map.h"
#include "being.h"
PATH_NODE *find_path(int pathfinderID, int startingX, int startingY,
int targetX, int targetY);
#endif
|