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