mirror of https://github.com/zeldaret/botw.git
16 lines
373 B
C++
16 lines
373 B
C++
#include "Game/AI/Action/actionNPCInfoOnHorse.h"
|
|
|
|
namespace uking::action {
|
|
|
|
NPCInfoOnHorse::NPCInfoOnHorse(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
NPCInfoOnHorse::~NPCInfoOnHorse() = default;
|
|
|
|
bool NPCInfoOnHorse::init_(sead::Heap* heap) {
|
|
return ksys::act::ai::Action::init_(heap);
|
|
}
|
|
|
|
void NPCInfoOnHorse::loadParams_() {}
|
|
|
|
} // namespace uking::action
|