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