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