mirror of
https://github.com/zeldaret/botw
synced 2026-05-23 15:01:35 -04:00
20 lines
404 B
C++
20 lines
404 B
C++
#include "KingSystem/ActorSystem/actAiRoot.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
RootAi::RootAi(const InitArg& arg) : Ai(arg) {
|
|
mBehaviorsByStopAndCalcTiming[0].fill({});
|
|
mBehaviorsByStopAndCalcTiming[1].fill({});
|
|
}
|
|
|
|
RootAi::~RootAi() {
|
|
mQueries.finalize();
|
|
mBehaviors.finalize();
|
|
mAis.finalize();
|
|
mActions.finalize();
|
|
if (_140)
|
|
delete _140;
|
|
}
|
|
|
|
} // namespace ksys::act::ai
|