diff -r c132ce47f560 -r 33efcc5f1b09 src/ai/squirrel/squirrel.hpp --- a/src/ai/squirrel/squirrel.hpp Thu Mar 15 19:26:11 2007 +0000 +++ b/src/ai/squirrel/squirrel.hpp Thu Mar 15 19:33:07 2007 +0000 @@ -2,8 +2,8 @@ /** @file squirrel.hpp declarations of the class for squirrel loader */ -#ifndef SQUIRREL_HPP -#define SQUIRREL_HPP +#ifndef AI_SQUIRREL_HPP +#define AI_SQUIRREL_HPP #ifdef _UNICODE /* Disable unicode for squirrel to allow compilation with MINGW @@ -14,11 +14,11 @@ #include #include "../core/ai_controller.hpp" #include "../core/ai_factory.hpp" -#include "engine.hpp" +#include "../../squirrel.hpp" class AIControllerSquirrel: public AIController { private: - SquirrelEngine *engine; ///< The SquirrelEngine + Squirrel *engine; ///< The Squirrel engine HSQOBJECT SQ_instance; ///< The internal instance of squirrel /** @@ -37,7 +37,7 @@ class FSquirrel: public AIFactory { private: - SquirrelEngine *engine; ///< The SquirrelEngine + Squirrel *engine; ///< The Squirrel engine const char *current_script; ///< Temporary variable to know which script defines which class /** @@ -64,4 +64,4 @@ /* virtual */ void Initializer(); }; -#endif /* SQUIRREL_HPP */ +#endif /* AI_SQUIRREL_HPP */