| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/LiveActor/LiveActor.h" |
| 4 | |
| 5 | class AppearSwitchSave; |
| 6 | |
| 7 | class StageSwitchSelector : public al::LiveActor { |
| 8 | public: |
| 9 | StageSwitchSelector(const char* name); |
| 10 | |
| 11 | void init(const al::ActorInitInfo& info) override; |
| 12 | |
| 13 | void exeWaitStatUp(); |
| 14 | void exeWaitStartSwitching(); |
| 15 | void exeWaitDelaySwitching(); |
| 16 | |
| 17 | private: |
| 18 | s32 mSwitchingStartFrameNum = 0; |
| 19 | s32 mSwitchingDelay = 0; |
| 20 | AppearSwitchSave* mAppearSwitchSave = nullptr; |
| 21 | }; |
| 22 |