Files
botw/src/Game/AI/Action/actionForkSeparateThreeASPart.h
T
2020-12-28 01:26:51 +01:00

30 lines
801 B
C++

#pragma once
#include "KingSystem/ActorSystem/actAiAction.h"
namespace uking::action {
class ForkSeparateThreeASPart : public ksys::act::ai::Action {
SEAD_RTTI_OVERRIDE(ForkSeparateThreeASPart, ksys::act::ai::Action)
public:
explicit ForkSeparateThreeASPart(const InitArg& arg);
~ForkSeparateThreeASPart() override;
bool init_(sead::Heap* heap) override;
void enter_(ksys::act::ai::InlineParamPack* params) override;
void leave_() override;
void loadParams_() override;
protected:
void calc_() override;
// static_param at offset 0x20
sead::SafeString mRootNode_s{};
// static_param at offset 0x30
sead::SafeString mSlot1StartNode_s{};
// static_param at offset 0x40
sead::SafeString mSlot2StartNode_s{};
};
} // namespace uking::action