mirror of https://github.com/zeldaret/botw.git
removed include and replaced with forward declare
This commit is contained in:
parent
72ac0ba326
commit
b66c16f84c
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
#include "Game/AI/AI/AirOcta/AirOctaDataMgr.h"
|
#include "Game/AI/AI/AirOcta/AirOctaDataMgr.h"
|
||||||
#include "KingSystem/ActorSystem/actAiAi.h"
|
#include "KingSystem/ActorSystem/actAiAi.h"
|
||||||
namespace uking::ai {
|
namespace uking {
|
||||||
|
class AirOctaDataMgr;
|
||||||
|
namespace ai {
|
||||||
class AirOctaFlyUp : public ksys::act::ai::Ai {
|
class AirOctaFlyUp : public ksys::act::ai::Ai {
|
||||||
SEAD_RTTI_OVERRIDE(AirOctaFlyUp, ksys::act::ai::Ai)
|
SEAD_RTTI_OVERRIDE(AirOctaFlyUp, ksys::act::ai::Ai)
|
||||||
friend uking::AirOctaDataMgr;
|
friend uking::AirOctaDataMgr;
|
||||||
|
@ -40,4 +41,5 @@ protected:
|
||||||
bool mIsEnded;
|
bool mIsEnded;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace uking::ai
|
} // namespace ai
|
||||||
|
} // namespace uking
|
||||||
|
|
Loading…
Reference in New Issue