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
+30
View File
@@ -0,0 +1,30 @@
#include "Game/AI/Action/actionBackStep.h"
namespace uking::action {
BackStep::BackStep(const InitArg& arg) : BackStepBase(arg) {}
BackStep::~BackStep() = default;
bool BackStep::init_(sead::Heap* heap) {
return BackStepBase::init_(heap);
}
void BackStep::enter_(ksys::act::ai::InlineParamPack* params) {
BackStepBase::enter_(params);
}
void BackStep::leave_() {
BackStepBase::leave_();
}
void BackStep::loadParams_() {
BackStepToTarget::loadParams_();
getStaticParam(&mJumpDist_s, "JumpDist");
}
void BackStep::calc_() {
BackStepBase::calc_();
}
} // namespace uking::action