1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5namespace al {
6class LayoutInitInfo;
7
8class SimpleLayoutAppear : public LayoutActor {
9public:
10 SimpleLayoutAppear(const char* name, const char* layoutName, const LayoutInitInfo& info,
11 const char* archiveName);
12
13 void appear() override;
14};
15} // namespace al
16