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