Action: Fix incorrect handling of inherited virtual functions

This commit is contained in:
Léo Lam
2020-12-28 21:20:02 +01:00
parent fcc062ec30
commit 56e1c0cfd2
1469 changed files with 215 additions and 11789 deletions
@@ -7,25 +7,8 @@ BattleCloseExplosivesGuardRun::BattleCloseExplosivesGuardRun(const InitArg& arg)
BattleCloseExplosivesGuardRun::~BattleCloseExplosivesGuardRun() = default;
bool BattleCloseExplosivesGuardRun::init_(sead::Heap* heap) {
return BattleCloseExplosivesAvoidRun::init_(heap);
}
void BattleCloseExplosivesGuardRun::enter_(ksys::act::ai::InlineParamPack* params) {
BattleCloseExplosivesAvoidRun::enter_(params);
}
void BattleCloseExplosivesGuardRun::leave_() {
BattleCloseExplosivesAvoidRun::leave_();
}
void BattleCloseExplosivesGuardRun::loadParams_() {
BattleCloseMoveActionBase::loadParams_();
getStaticParam(&mDamageIgnoreDist_s, "DamageIgnoreDist");
}
void BattleCloseExplosivesGuardRun::calc_() {
BattleCloseExplosivesAvoidRun::calc_();
}
} // namespace uking::action