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/actionKokkoCreateDrop.h"
namespace uking::action {
KokkoCreateDrop::KokkoCreateDrop(const InitArg& arg) : KokkoCreateDropBase(arg) {}
KokkoCreateDrop::~KokkoCreateDrop() = default;
bool KokkoCreateDrop::init_(sead::Heap* heap) {
return KokkoCreateDropBase::init_(heap);
}
void KokkoCreateDrop::enter_(ksys::act::ai::InlineParamPack* params) {
KokkoCreateDropBase::enter_(params);
}
void KokkoCreateDrop::leave_() {
KokkoCreateDropBase::leave_();
}
void KokkoCreateDrop::loadParams_() {
KokkoCreateDropBase::loadParams_();
}
void KokkoCreateDrop::calc_() {
KokkoCreateDropBase::calc_();
}
} // namespace uking::action