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