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