mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-06 15:27:40 +00:00
18 lines
547 B
C++
18 lines
547 B
C++
#include "Library/Play/Layout/SimpleLayoutAppear.h"
|
|
|
|
#include "Library/Layout/LayoutActionFunction.h"
|
|
#include "Library/Layout/LayoutInitInfo.h"
|
|
|
|
namespace al {
|
|
SimpleLayoutAppear::SimpleLayoutAppear(const char* name, const char* layoutName,
|
|
const LayoutInitInfo& info, const char* archiveName)
|
|
: LayoutActor(name) {
|
|
initLayoutActor(this, info, layoutName, archiveName);
|
|
}
|
|
|
|
void SimpleLayoutAppear::appear() {
|
|
startAction(this, "Appear", nullptr);
|
|
LayoutActor::appear();
|
|
}
|
|
} // namespace al
|