mirror of
https://github.com/zeldaret/botw
synced 2026-07-30 15:53:56 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#include "Game/AI/Action/actionPlayerTreeClimb.h"
|
||||
|
||||
namespace uking::action {
|
||||
|
||||
PlayerTreeClimb::PlayerTreeClimb(const InitArg& arg) : PlayerAction(arg) {}
|
||||
|
||||
PlayerTreeClimb::~PlayerTreeClimb() = default;
|
||||
|
||||
bool PlayerTreeClimb::init_(sead::Heap* heap) {
|
||||
return PlayerAction::init_(heap);
|
||||
}
|
||||
|
||||
void PlayerTreeClimb::enter_(ksys::act::ai::InlineParamPack* params) {
|
||||
PlayerAction::enter_(params);
|
||||
}
|
||||
|
||||
void PlayerTreeClimb::leave_() {
|
||||
PlayerAction::leave_();
|
||||
}
|
||||
|
||||
void PlayerTreeClimb::loadParams_() {}
|
||||
|
||||
void PlayerTreeClimb::calc_() {
|
||||
PlayerAction::calc_();
|
||||
}
|
||||
|
||||
} // namespace uking::action
|
||||
Reference in New Issue
Block a user