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