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