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