| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include <prim/seadSafeString.h> |
| 4 | |
| 5 | namespace al { |
| 6 | class SceneEventFlowMsg { |
| 7 | public: |
| 8 | SceneEventFlowMsg(); |
| 9 | |
| 10 | bool isReceiveCommand(const char* cmd) const; |
| 11 | void requestCommand(const char* cmd); |
| 12 | |
| 13 | private: |
| 14 | sead::FixedSafeString<64> mCmd = {""}; |
| 15 | }; |
| 16 | |
| 17 | static_assert(sizeof(SceneEventFlowMsg) == 0x58); |
| 18 | } // namespace al |
| 19 |