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