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