Generate actions

This commit is contained in:
Léo Lam
2020-12-26 22:42:23 +01:00
parent dff91d6b4c
commit 02c583ca4d
3864 changed files with 138282 additions and 6792 deletions
@@ -0,0 +1,30 @@
#include "Game/AI/Action/actionGuardianMoveToTarget.h"
namespace uking::action {
GuardianMoveToTarget::GuardianMoveToTarget(const InitArg& arg) : GuardianMoveTo(arg) {}
GuardianMoveToTarget::~GuardianMoveToTarget() = default;
bool GuardianMoveToTarget::init_(sead::Heap* heap) {
return GuardianMoveTo::init_(heap);
}
void GuardianMoveToTarget::enter_(ksys::act::ai::InlineParamPack* params) {
GuardianMoveTo::enter_(params);
}
void GuardianMoveToTarget::leave_() {
GuardianMoveTo::leave_();
}
void GuardianMoveToTarget::loadParams_() {
GuardianMoveTo::loadParams_();
getStaticParam(&mSpeed_s, "Speed");
}
void GuardianMoveToTarget::calc_() {
GuardianMoveTo::calc_();
}
} // namespace uking::action