Skip to content

Commit

Permalink
Fixup ai include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Vultraz committed Mar 24, 2016
1 parent 17ea7fa commit 6374f57
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/ai/default/engine_cpp.hpp
Expand Up @@ -20,7 +20,7 @@
#ifndef AI_COMPOSITE_ENGINE_DEFAULT_HPP_INCLUDED
#define AI_COMPOSITE_ENGINE_DEFAULT_HPP_INCLUDED

#include "engine.hpp"
#include "ai/composite/engine.hpp"

//============================================================================
namespace ai {
Expand Down
2 changes: 1 addition & 1 deletion src/ai/formula/engine_fai.cpp
Expand Up @@ -19,7 +19,7 @@

#include "ai.hpp"
#include "engine_fai.hpp"
#include "rca.hpp"
#include "ai/composite/rca.hpp"
#include "ai/formula/ai.hpp"
#include "ai/formula/candidates.hpp"
#include "ai/formula/stage_side_formulas.hpp"
Expand Down
4 changes: 2 additions & 2 deletions src/ai/formula/engine_fai.hpp
Expand Up @@ -20,8 +20,8 @@
#ifndef AI_COMPOSITE_ENGINE_FAI_HPP_INCLUDED
#define AI_COMPOSITE_ENGINE_FAI_HPP_INCLUDED

#include "engine.hpp"
#include "contexts.hpp"
#include "ai/composite/engine.hpp"
#include "ai/default/contexts.hpp"

//============================================================================
namespace ai {
Expand Down
10 changes: 5 additions & 5 deletions src/ai/lua/engine_lua.cpp
Expand Up @@ -17,12 +17,12 @@
* @file
*/

#include "ai.hpp"
#include "ai/formula/ai.hpp"
#include "engine_lua.hpp"
#include "goal.hpp"
#include "rca.hpp"
#include "stage.hpp"
#include "aspect.hpp"
#include "ai/composite/goal.hpp"
#include "ai/composite/rca.hpp"
#include "ai/composite/stage.hpp"
#include "ai/composite/aspect.hpp"

#include "ai/gamestate_observer.hpp"

Expand Down
2 changes: 1 addition & 1 deletion src/ai/lua/engine_lua.hpp
Expand Up @@ -20,7 +20,7 @@
#ifndef AI_COMPOSITE_ENGINE_LUA_HPP_INCLUDED
#define AI_COMPOSITE_ENGINE_LUA_HPP_INCLUDED

#include "engine.hpp"
#include "ai/composite/engine.hpp"

//============================================================================
namespace ai {
Expand Down

0 comments on commit 6374f57

Please sign in to comment.