#pragma once #include "KingSystem/ActorSystem/actAiAction.h" namespace uking::action { class LevelFlyRise : public ksys::act::ai::Action { SEAD_RTTI_OVERRIDE(LevelFlyRise, ksys::act::ai::Action) public: explicit LevelFlyRise(const InitArg& arg); ~LevelFlyRise() 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 const float* mHeight_s{}; // static_param at offset 0x28 const float* mSpeed_s{}; // static_param at offset 0x30 const float* mPosReduceRatio_s{}; // static_param at offset 0x38 const float* mRotRatio_s{}; // static_param at offset 0x40 sead::SafeString mASName_s{}; }; } // namespace uking::action