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
-16
View File
@@ -6,26 +6,10 @@ GuardWithAS::GuardWithAS(const InitArg& arg) : Guard(arg) {}
GuardWithAS::~GuardWithAS() = default;
bool GuardWithAS::init_(sead::Heap* heap) {
return Guard::init_(heap);
}
void GuardWithAS::enter_(ksys::act::ai::InlineParamPack* params) {
Guard::enter_(params);
}
void GuardWithAS::leave_() {
Guard::leave_();
}
void GuardWithAS::loadParams_() {
Guard::loadParams_();
getStaticParam(&mASSlot_s, "ASSlot");
getStaticParam(&mASName_s, "ASName");
}
void GuardWithAS::calc_() {
Guard::calc_();
}
} // namespace uking::action