mirror of
https://github.com/zeldaret/botw
synced 2026-08-04 01:03:07 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#include "Game/AI/Action/actionPlayerLadderJump.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
PlayerLadderJump::PlayerLadderJump(const InitArg& arg) : PlayerAction(arg) {}
|
||||
|
||||
PlayerLadderJump::~PlayerLadderJump() = default;
|
||||
|
||||
bool PlayerLadderJump::init_(sead::Heap* heap) {
|
||||
return PlayerAction::init_(heap);
|
||||
}
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user