1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5namespace al {
6class LayoutInitInfo;
7}
8
9class TestFilterGlasses : public al::LayoutActor {
10public:
11 TestFilterGlasses(const char* name, const al::LayoutInitInfo& info, const char* suffix);
12
13 void startAppear();
14 void end();
15
16 void exeAppear();
17 void exeWait();
18 void exeEnd();
19 bool isEnd() const;
20};
21