mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-05-07 15:58:03 +00:00
21 lines
404 B
C++
21 lines
404 B
C++
#pragma once
|
|
|
|
#include "Library/Nerve/NerveExecutor.h"
|
|
|
|
namespace al {
|
|
class LayoutInitInfo;
|
|
}
|
|
|
|
class DecideIconLayout : public al::NerveExecutor {
|
|
public:
|
|
DecideIconLayout(const char*, const al::LayoutInitInfo*);
|
|
void appear();
|
|
void exeAppear();
|
|
void exeWait();
|
|
void exeDecide();
|
|
bool isDecide() const;
|
|
bool isWait() const;
|
|
bool isEnd() const;
|
|
char filler[0x140];
|
|
};
|