mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 22:40:14 -04:00
31 lines
700 B
C++
31 lines
700 B
C++
#include "Game/AI/Action/actionFishOnGround.h"
|
|
|
|
namespace uking::action {
|
|
|
|
FishOnGround::FishOnGround(const InitArg& arg) : ActionWithPosAngReduce(arg) {}
|
|
|
|
FishOnGround::~FishOnGround() = default;
|
|
|
|
bool FishOnGround::init_(sead::Heap* heap) {
|
|
return ActionWithPosAngReduce::init_(heap);
|
|
}
|
|
|
|
void FishOnGround::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ActionWithPosAngReduce::enter_(params);
|
|
}
|
|
|
|
void FishOnGround::leave_() {
|
|
ActionWithPosAngReduce::leave_();
|
|
}
|
|
|
|
void FishOnGround::loadParams_() {
|
|
ActionWithPosAngReduce::loadParams_();
|
|
getStaticParam(&mASKey_s, "ASKey");
|
|
}
|
|
|
|
void FishOnGround::calc_() {
|
|
ActionWithPosAngReduce::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|