botw/src/Game/AI/Action/actionPlayerKokkoGlide.cpp

26 lines
601 B
C++

#include "Game/AI/Action/actionPlayerKokkoGlide.h"
namespace uking::action {
PlayerKokkoGlide::PlayerKokkoGlide(const InitArg& arg) : PlayerGlide(arg) {}
void PlayerKokkoGlide::enter_(ksys::act::ai::InlineParamPack* params) {
PlayerGlide::enter_(params);
}
void PlayerKokkoGlide::leave_() {
PlayerGlide::leave_();
}
void PlayerKokkoGlide::loadParams_() {
PlayerGlide::loadParams_();
getStaticParam(&mEnergyGlide_s, "EnergyGlide");
getStaticParam(&mNoEnergyTime_s, "NoEnergyTime");
}
void PlayerKokkoGlide::calc_() {
PlayerGlide::calc_();
}
} // namespace uking::action