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