1#pragma once
2
3#include "Library/LiveActor/LiveActor.h"
4
5class AppearSwitchSave;
6
7class StageSwitchSelector : public al::LiveActor {
8public:
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
17private:
18 s32 mSwitchingStartFrameNum = 0;
19 s32 mSwitchingDelay = 0;
20 AppearSwitchSave* mAppearSwitchSave = nullptr;
21};
22