mirror of
https://github.com/zeldaret/botw
synced 2026-08-10 11:13:50 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#include "Game/AI/Action/actionBattleCloseDangerAvoidRun.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
BattleCloseDangerAvoidRun::BattleCloseDangerAvoidRun(const InitArg& arg)
|
||||
: BattleCloseExplosivesAvoidRun(arg) {}
|
||||
|
||||
BattleCloseDangerAvoidRun::~BattleCloseDangerAvoidRun() = default;
|
||||
|
||||
bool BattleCloseDangerAvoidRun::init_(sead::Heap* heap) {
|
||||
return BattleCloseExplosivesAvoidRun::init_(heap);
|
||||
}
|
||||
|
||||
void BattleCloseDangerAvoidRun::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
BattleCloseExplosivesAvoidRun::enter_(params);
|
||||
}
|
||||
|
||||
void BattleCloseDangerAvoidRun::leave_() {
|
||||
BattleCloseExplosivesAvoidRun::leave_();
|
||||
}
|
||||
|
||||
void BattleCloseDangerAvoidRun::loadParams_() {
|
||||
BattleCloseExplosivesAvoidRun::loadParams_();
|
||||
getStaticParam(&mAvoidSubAngle_s, "AvoidSubAngle");
|
||||
}
|
||||
|
||||
void BattleCloseDangerAvoidRun::calc_() {
|
||||
BattleCloseExplosivesAvoidRun::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user