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
+31
View File
@@ -0,0 +1,31 @@
#include "Game/AI/Action/actionGrabAttack.h"
namespace uking::action {
GrabAttack::GrabAttack(const InitArg& arg) : Grab(arg) {}
GrabAttack::~GrabAttack() = default;
bool GrabAttack::init_(sead::Heap* heap) {
return Grab::init_(heap);
}
void GrabAttack::enter_(ksys::act::ai::InlineParamPack* params) {
Grab::enter_(params);
}
void GrabAttack::leave_() {
Grab::leave_();
}
void GrabAttack::loadParams_() {
Grab::loadParams_();
getStaticParam(&mASName_s, "ASName");
getStaticParam(&mAtRigidBodyName_s, "AtRigidBodyName");
}
void GrabAttack::calc_() {
Grab::calc_();
}
} // namespace uking::action