mirror of https://github.com/zeldaret/botw.git
27 lines
525 B
C++
27 lines
525 B
C++
#include "Game/AI/Action/actionEat.h"
|
|
|
|
namespace uking::action {
|
|
|
|
Eat::Eat(const InitArg& arg) : ActionWithPosAngReduce(arg) {}
|
|
|
|
Eat::~Eat() = default;
|
|
|
|
void Eat::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ActionWithPosAngReduce::enter_(params);
|
|
}
|
|
|
|
void Eat::leave_() {
|
|
ActionWithPosAngReduce::leave_();
|
|
}
|
|
|
|
void Eat::loadParams_() {
|
|
ActionWithPosAngReduce::loadParams_();
|
|
getStaticParam(&mIsHeal_s, "IsHeal");
|
|
}
|
|
|
|
void Eat::calc_() {
|
|
ActionWithPosAngReduce::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|