mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 06:48:15 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user