mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-30 04:24:17 +00:00
29 lines
648 B
C++
29 lines
648 B
C++
#pragma once
|
|
|
|
#include <math/seadVector.h>
|
|
|
|
#include "Library/Layout/LayoutActor.h"
|
|
|
|
namespace al {
|
|
class LayoutInitInfo;
|
|
|
|
class SimplePopupMessageLayout : public LayoutActor {
|
|
public:
|
|
SimplePopupMessageLayout(const char* name, const char* layoutName, const LayoutInitInfo& info,
|
|
const char* archiveName, bool localize);
|
|
void appear() override;
|
|
void end();
|
|
void startWait();
|
|
void exeAppear();
|
|
void refreshPos();
|
|
void exeWait();
|
|
void exeEnd();
|
|
bool isWait() const;
|
|
bool isAppearOrWait() const;
|
|
|
|
private:
|
|
s32 mLifetime = -1;
|
|
sead::Vector3f mWorldPos;
|
|
};
|
|
} // namespace al
|