mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 06:48:15 -04:00
24 lines
503 B
C++
24 lines
503 B
C++
#include "Game/AI/Action/actionPlayerWallSlip.h"
|
|
|
|
namespace uking::action {
|
|
|
|
PlayerWallSlip::PlayerWallSlip(const InitArg& arg) : PlayerAction(arg) {}
|
|
|
|
void PlayerWallSlip::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
PlayerAction::enter_(params);
|
|
}
|
|
|
|
void PlayerWallSlip::leave_() {
|
|
PlayerAction::leave_();
|
|
}
|
|
|
|
void PlayerWallSlip::loadParams_() {
|
|
getStaticParam(&mJumpHeight_s, "JumpHeight");
|
|
}
|
|
|
|
void PlayerWallSlip::calc_() {
|
|
PlayerAction::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|