mirror of
https://github.com/zeldaret/botw
synced 2026-08-16 20:57:31 -04:00
24 lines
603 B
C++
24 lines
603 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiAction.h"
|
|
|
|
namespace uking::action {
|
|
|
|
class EventRollbackQuestAction : public ksys::act::ai::Action {
|
|
SEAD_RTTI_OVERRIDE(EventRollbackQuestAction, ksys::act::ai::Action)
|
|
public:
|
|
explicit EventRollbackQuestAction(const InitArg& arg);
|
|
~EventRollbackQuestAction() override;
|
|
|
|
bool init_(sead::Heap* heap) override;
|
|
void loadParams_() override;
|
|
|
|
protected:
|
|
// dynamic_param at offset 0x20
|
|
sead::SafeString mQuestName_d{};
|
|
// dynamic_param at offset 0x30
|
|
sead::SafeString mStepName_d{};
|
|
};
|
|
|
|
} // namespace uking::action
|