| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/Layout/LayoutActor.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class LayoutInitInfo; |
| 7 | } |
| 8 | |
| 9 | class ButtonMiiverse : public al::LayoutActor { |
| 10 | public: |
| 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 |