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