diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-06 19:18:33 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-02-06 19:18:33 +0000 |
commit | 819c303db467086d714ad663b285b44cde6329cf (patch) | |
tree | c32af1bb58379bfc790fd27fe2e4889ffab36df5 /src/astar.h | |
parent | 5ec4143bde0fd67c7aca841804a5d165c794bdf0 (diff) | |
download | mana-819c303db467086d714ad663b285b44cde6329cf.tar.gz mana-819c303db467086d714ad663b285b44cde6329cf.tar.bz2 mana-819c303db467086d714ad663b285b44cde6329cf.tar.xz mana-819c303db467086d714ad663b285b44cde6329cf.zip |
Mostly making map tile data dynamically allocated.
Diffstat (limited to 'src/astar.h')
-rw-r--r-- | src/astar.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/astar.h b/src/astar.h index fe4820e0..fbe45aae 100644 --- a/src/astar.h +++ b/src/astar.h @@ -4,14 +4,7 @@ #include "map.h" #include "being.h" -#define NOT_STARTED 0 -#define FOUND 1 -#define NOT_FOUND 2 - PATH_NODE *find_path(int pathfinderID, int startingX, int startingY, int targetX, int targetY); -/** Read the path data */ -void ReadPath(int pathfinderID); - #endif |