1#include "Library/Play/Layout/SimpleLayoutAppear.h"
2
3#include "Library/Layout/LayoutActionFunction.h"
4#include "Library/Layout/LayoutInitInfo.h"
5
6namespace al {
7SimpleLayoutAppear::SimpleLayoutAppear(const char* name, const char* layoutName,
8 const LayoutInitInfo& info, const char* archiveName)
9 : LayoutActor(name) {
10 initLayoutActor(this, info, layoutName, archiveName);
11}
12
13void SimpleLayoutAppear::appear() {
14 startAction(layout: this, actionName: "Appear", paneName: nullptr);
15 LayoutActor::appear();
16}
17} // namespace al
18