mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-30 12:35:12 +00:00
18 lines
538 B
C++
18 lines
538 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");
|
|
LayoutActor::appear();
|
|
}
|
|
} // namespace al
|