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/actionGuardWithAS.h"
namespace uking::action {
GuardWithAS::GuardWithAS(const InitArg& arg) : Guard(arg) {}
GuardWithAS::~GuardWithAS() = default;
bool GuardWithAS::init_(sead::Heap* heap) {
return Guard::init_(heap);
}
void GuardWithAS::enter_(ksys::act::ai::InlineParamPack* params) {
Guard::enter_(params);
}
void GuardWithAS::leave_() {
Guard::leave_();
}
void GuardWithAS::loadParams_() {
Guard::loadParams_();
getStaticParam(&mASSlot_s, "ASSlot");
getStaticParam(&mASName_s, "ASName");
}
void GuardWithAS::calc_() {
Guard::calc_();
}
} // namespace uking::action