mirror of
https://github.com/zeldaret/botw
synced 2026-07-12 14:52:04 -04:00
16 lines
366 B
C++
16 lines
366 B
C++
#include "Game/AI/Action/actionReceiveTerror.h"
|
|
|
|
namespace uking::action {
|
|
|
|
ReceiveTerror::ReceiveTerror(const InitArg& arg) : ksys::act::ai::Action(arg) {}
|
|
|
|
ReceiveTerror::~ReceiveTerror() = default;
|
|
|
|
bool ReceiveTerror::init_(sead::Heap* heap) {
|
|
return ksys::act::ai::Action::init_(heap);
|
|
}
|
|
|
|
void ReceiveTerror::loadParams_() {}
|
|
|
|
} // namespace uking::action
|