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,31 @@
#include "Game/AI/Action/actionForkAlwaysForceGetUpWithOffset.h"
namespace uking::action {
ForkAlwaysForceGetUpWithOffset::ForkAlwaysForceGetUpWithOffset(const InitArg& arg)
: ForkAlwaysForceGetUp(arg) {}
ForkAlwaysForceGetUpWithOffset::~ForkAlwaysForceGetUpWithOffset() = default;
bool ForkAlwaysForceGetUpWithOffset::init_(sead::Heap* heap) {
return ForkAlwaysForceGetUp::init_(heap);
}
void ForkAlwaysForceGetUpWithOffset::enter_(ksys::act::ai::InlineParamPack* params) {
ForkAlwaysForceGetUp::enter_(params);
}
void ForkAlwaysForceGetUpWithOffset::leave_() {
ForkAlwaysForceGetUp::leave_();
}
void ForkAlwaysForceGetUpWithOffset::loadParams_() {
ForkAlwaysForceGetUp::loadParams_();
getStaticParam(&mRotCenterPos_s, "RotCenterPos");
}
void ForkAlwaysForceGetUpWithOffset::calc_() {
ForkAlwaysForceGetUp::calc_();
}
} // namespace uking::action