mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 13:46:25 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -4,27 +4,4 @@ namespace uking::action {
|
||||
|
||||
BackStep::BackStep(const InitArg& arg) : BackStepBase(arg) {}
|
||||
|
||||
BackStep::~BackStep() = default;
|
||||
|
||||
bool BackStep::init_(sead::Heap* heap) {
|
||||
return BackStepBase::init_(heap);
|
||||
}
|
||||
|
||||
void BackStep::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
BackStepBase::enter_(params);
|
||||
}
|
||||
|
||||
void BackStep::leave_() {
|
||||
BackStepBase::leave_();
|
||||
}
|
||||
|
||||
void BackStep::loadParams_() {
|
||||
BackStepToTarget::loadParams_();
|
||||
getStaticParam(&mJumpDist_s, "JumpDist");
|
||||
}
|
||||
|
||||
void BackStep::calc_() {
|
||||
BackStepBase::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
|
||||
Reference in New Issue
Block a user