diff --git a/AI/BattleAI/AttackPossibility.h b/AI/BattleAI/AttackPossibility.h index bab525c50..f370e87cc 100644 --- a/AI/BattleAI/AttackPossibility.h +++ b/AI/BattleAI/AttackPossibility.h @@ -9,7 +9,7 @@ */ #pragma once #include "../../lib/BattleState.h" -#include "CCallback.h" +#include "../../CCallback.h" #include "common.h" diff --git a/AI/BattleAI/BattleAI.cbp b/AI/BattleAI/BattleAI.cbp index 30f218952..60423bd42 100644 --- a/AI/BattleAI/BattleAI.cbp +++ b/AI/BattleAI/BattleAI.cbp @@ -66,12 +66,24 @@ + + + + + + + + + + + + diff --git a/AI/BattleAI/EnemyInfo.cpp b/AI/BattleAI/EnemyInfo.cpp index 404e61f24..17ed65058 100644 --- a/AI/BattleAI/EnemyInfo.cpp +++ b/AI/BattleAI/EnemyInfo.cpp @@ -9,8 +9,8 @@ */ #include "StdInc.h" #include "EnemyInfo.h" -#include "CRandomGenerator.h" -#include "CCallback.h" +#include "../../lib/CRandomGenerator.h" +#include "../../CCallback.h" #include "common.h" void EnemyInfo::calcDmg(const CStack * ourStack) diff --git a/AI/BattleAI/EnemyInfo.h b/AI/BattleAI/EnemyInfo.h index 085dd793c..52212f050 100644 --- a/AI/BattleAI/EnemyInfo.h +++ b/AI/BattleAI/EnemyInfo.h @@ -8,7 +8,7 @@ * */ #pragma once -#include "BattleHex.h" +#include "../../lib/BattleState.h" class CStack;