mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 06:48:15 -04:00
29 lines
589 B
C++
29 lines
589 B
C++
#include "Game/AI/Action/actionCatch.h"
|
|
|
|
namespace uking::action {
|
|
|
|
Catch::Catch(const InitArg& arg) : ActionEx(arg) {}
|
|
|
|
Catch::~Catch() = default;
|
|
|
|
void Catch::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ActionEx::enter_(params);
|
|
}
|
|
|
|
void Catch::leave_() {
|
|
ActionEx::leave_();
|
|
}
|
|
|
|
void Catch::loadParams_() {
|
|
getStaticParam(&mWeaponIdx_s, "WeaponIdx");
|
|
getDynamicParam(&mTargetWeapon_d, "TargetWeapon");
|
|
getStaticParam(&mRotSpd_s, "RotSpd");
|
|
getStaticParam(&mASName_s, "ASName");
|
|
}
|
|
|
|
void Catch::calc_() {
|
|
ActionEx::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|