mirror of
https://github.com/zeldaret/botw
synced 2026-07-08 05:40:38 -04:00
24 lines
517 B
C++
24 lines
517 B
C++
#include "Game/AI/Action/actionPlayerLadderJump.h"
|
|
|
|
namespace uking::action {
|
|
|
|
PlayerLadderJump::PlayerLadderJump(const InitArg& arg) : PlayerAction(arg) {}
|
|
|
|
void PlayerLadderJump::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
PlayerAction::enter_(params);
|
|
}
|
|
|
|
void PlayerLadderJump::leave_() {
|
|
PlayerAction::leave_();
|
|
}
|
|
|
|
void PlayerLadderJump::loadParams_() {
|
|
getStaticParam(&mEnergyJump_s, "EnergyJump");
|
|
}
|
|
|
|
void PlayerLadderJump::calc_() {
|
|
PlayerAction::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|