mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 22:55:27 -04:00
28 lines
641 B
C++
28 lines
641 B
C++
#include "Game/AI/Action/actionEventSuccessGet.h"
|
|
|
|
namespace uking::action {
|
|
|
|
EventSuccessGet::EventSuccessGet(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
EventSuccessGet::~EventSuccessGet() = default;
|
|
|
|
bool EventSuccessGet::init_(sead::Heap* heap) {
|
|
return ksys::act::ai::Action::init_(heap);
|
|
}
|
|
|
|
void EventSuccessGet::enter_(ksys::act::ai::InlineParamPack* params) {
|
|
ksys::act::ai::Action::enter_(params);
|
|
}
|
|
|
|
void EventSuccessGet::leave_() {
|
|
ksys::act::ai::Action::leave_();
|
|
}
|
|
|
|
void EventSuccessGet::loadParams_() {}
|
|
|
|
void EventSuccessGet::calc_() {
|
|
ksys::act::ai::Action::calc_();
|
|
}
|
|
|
|
} // namespace uking::action
|