1#pragma once
2
3#include "Library/Layout/LayoutActor.h"
4
5namespace al {
6class LayoutInitInfo;
7}
8
9class ButtonMiiverse : public al::LayoutActor {
10public:
11 ButtonMiiverse();
12
13 void init(const al::LayoutInitInfo& info);
14 bool isOn() const;
15 void setOff();
16 void validate();
17 void forceValidate();
18 void invalidate();
19
20 void exeWait();
21 void exeHoldOn();
22 void exeHoldOff();
23 void exeDecide();
24 void exeOnWait();
25 void exeDisable();
26};
27