| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/Layout/LayoutActor.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class LayoutInitInfo; |
| 7 | |
| 8 | class SimpleLayoutAppearWait : public LayoutActor { |
| 9 | public: |
| 10 | SimpleLayoutAppearWait(const char* name, const char* layoutName, const LayoutInitInfo& info, |
| 11 | const char* archiveName); |
| 12 | SimpleLayoutAppearWait(LayoutActor* parentActor, const char* name, const char* layoutName, |
| 13 | const LayoutInitInfo& info, const char* archiveName); |
| 14 | |
| 15 | void appear() override; |
| 16 | |
| 17 | bool isWait() const; |
| 18 | void exeAppear(); |
| 19 | void exeWait(); |
| 20 | }; |
| 21 | } // namespace al |
| 22 |