mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-30 04:24:17 +00:00
16 lines
342 B
C++
16 lines
342 B
C++
#pragma once
|
|
|
|
#include "Library/Layout/LayoutActor.h"
|
|
|
|
namespace al {
|
|
class LayoutInitInfo;
|
|
|
|
class SimpleLayoutAppear : public LayoutActor {
|
|
public:
|
|
SimpleLayoutAppear(const char* name, const char* layoutName, const LayoutInitInfo& info,
|
|
const char* archiveName);
|
|
|
|
void appear() override;
|
|
};
|
|
} // namespace al
|