mirror of
https://github.com/zeldaret/botw
synced 2026-08-10 11:13:50 -04:00
Action: Fix incorrect handling of inherited virtual functions
This commit is contained in:
@@ -4,12 +4,6 @@ namespace uking::action {
|
||||
|
||||
PlayerWait::PlayerWait(const InitArg& arg) : PlayerAction(arg) {}
|
||||
|
||||
PlayerWait::~PlayerWait() = default;
|
||||
|
||||
bool PlayerWait::init_(sead::Heap* heap) {
|
||||
return PlayerAction::init_(heap);
|
||||
}
|
||||
|
||||
void PlayerWait::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
PlayerAction::enter_(params);
|
||||
}
|
||||
@@ -18,8 +12,6 @@ void PlayerWait::leave_() {
|
||||
PlayerAction::leave_();
|
||||
}
|
||||
|
||||
void PlayerWait::loadParams_() {}
|
||||
|
||||
void PlayerWait::calc_() {
|
||||
PlayerAction::calc_();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user