diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-11 01:08:52 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-11 01:08:52 +0000 |
commit | 06c3e2cbf10034bd348376632ccc30de9da97e5d (patch) | |
tree | b17a6f6dd71571aa8192003ecdc976ebb717027f /src/astar.h | |
parent | 2a964c1fa537e58daee14af6a68a3ef0224c8d65 (diff) | |
download | mana-06c3e2cbf10034bd348376632ccc30de9da97e5d.tar.gz mana-06c3e2cbf10034bd348376632ccc30de9da97e5d.tar.bz2 mana-06c3e2cbf10034bd348376632ccc30de9da97e5d.tar.xz mana-06c3e2cbf10034bd348376632ccc30de9da97e5d.zip |
Removed Allegro dependency on logger, which now also produces timestamped
categorized messages instead of using the configuration file approach.
Diffstat (limited to 'src/astar.h')
-rw-r--r-- | src/astar.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/astar.h b/src/astar.h index 4a9fa045..e5cc3809 100644 --- a/src/astar.h +++ b/src/astar.h @@ -1,9 +1,10 @@ +#ifndef _ASTAR_H +#define _ASTAR_H + #ifdef WIN32 #pragma warning (disable:4312) #endif -#include <allegro.h> - #include "map.h" #include "being.h" @@ -22,4 +23,4 @@ void RenderScreen (bool stepByStep=false); PATH_NODE *find_path(int pathfinderID,int startingX, int startingY, int targetX, int targetY); void ReadPath(int pathfinderID); - +#endif |