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