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