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