mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -6,25 +6,9 @@ EatWithAS::EatWithAS(const InitArg& arg) : Eat(arg) {}
|
||||
|
||||
EatWithAS::~EatWithAS() = default;
|
||||
|
||||
bool EatWithAS::init_(sead::Heap* heap) {
|
||||
return Eat::init_(heap);
|
||||
}
|
||||
|
||||
void EatWithAS::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
Eat::enter_(params);
|
||||
}
|
||||
|
||||
void EatWithAS::leave_() {
|
||||
Eat::leave_();
|
||||
}
|
||||
|
||||
void EatWithAS::loadParams_() {
|
||||
Eat::loadParams_();
|
||||
getStaticParam(&mASName_s, "ASName");
|
||||
}
|
||||
|
||||
void EatWithAS::calc_() {
|
||||
Eat::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
|
||||
Reference in New Issue
Block a user