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
-22
View File
@@ -4,26 +4,4 @@ namespace uking::action {
ThrowRight::ThrowRight(const InitArg& arg) : Throw(arg) {}
ThrowRight::~ThrowRight() = default;
bool ThrowRight::init_(sead::Heap* heap) {
return Throw::init_(heap);
}
void ThrowRight::enter_(ksys::act::ai::InlineParamPack* params) {
Throw::enter_(params);
}
void ThrowRight::leave_() {
Throw::leave_();
}
void ThrowRight::loadParams_() {
ActionWithPosAngReduce::loadParams_();
}
void ThrowRight::calc_() {
Throw::calc_();
}
} // namespace uking::action