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