mirror of
https://github.com/zeldaret/botw
synced 2026-08-18 21:27:36 -04:00
Generate actions
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user