mirror of
https://github.com/zeldaret/botw
synced 2026-07-30 15:53:56 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -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_();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user