mirror of
https://github.com/zeldaret/botw
synced 2026-07-11 14:38:41 -04:00
24 lines
623 B
C++
24 lines
623 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class SceneSoundSetStartProcAction : public ksys::act::ai::Action {
|
|
SEAD_RTTI_OVERRIDE(SceneSoundSetStartProcAction, ksys::act::ai::Action)
|
|
public:
|
|
explicit SceneSoundSetStartProcAction(const InitArg& arg);
|
|
~SceneSoundSetStartProcAction() override;
|
|
|
|
bool init_(sead::Heap* heap) override;
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
// dynamic_param at offset 0x20
|
|
sead::SafeString mBgmCtrlType_d{};
|
|
// dynamic_param at offset 0x30
|
|
sead::SafeString mSeCtrlType_d{};
|
|
};
|
|
|
|
} // namespace uking::action
|