Files
hmmmm/flatbuffers/control/exec_notif.fbs
2026-03-30 16:20:14 +03:00

14 lines
209 B
Plaintext

namespace hmmmm.ctrl.exec_notif;
enum ExecState: byte {
still = 0,
executing = 1,
paused = 2,
stopped = 3,
}
table ExecNotifyMessage {
tclk: uint64;
state: ExecState;
}