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
@@ -6,10 +6,6 @@ PlayerEventStartWait::PlayerEventStartWait(const InitArg& arg) : PlayerAction(ar
PlayerEventStartWait::~PlayerEventStartWait() = default;
bool PlayerEventStartWait::init_(sead::Heap* heap) {
return PlayerAction::init_(heap);
}
void PlayerEventStartWait::enter_(ksys::act::ai::InlineParamPack* params) {
PlayerAction::enter_(params);
}
@@ -18,8 +14,6 @@ void PlayerEventStartWait::leave_() {
PlayerAction::leave_();
}
void PlayerEventStartWait::loadParams_() {}
void PlayerEventStartWait::calc_() {
PlayerAction::calc_();
}