mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 14:38:41 -04:00
18 lines
495 B
C++
18 lines
495 B
C++
#include "Game/AI/Action/actionEventAppearGolfCount.h"
|
|
|
|
namespace uking::action {
|
|
|
|
EventAppearGolfCount::EventAppearGolfCount(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
EventAppearGolfCount::~EventAppearGolfCount() = default;
|
|
|
|
bool EventAppearGolfCount::init_(sead::Heap* heap) {
|
|
return ksys::act::ai::Action::init_(heap);
|
|
}
|
|
|
|
void EventAppearGolfCount::loadParams_() {
|
|
getDynamicParam(&mGameDataIntTargetCounter_d, "GameDataIntTargetCounter");
|
|
}
|
|
|
|
} // namespace uking::action
|