isle/LEGO1/lego/legoomni/include/extra.h
Christian Semmler bf2c4ce6d5 Update enums
2024-01-17 09:56:04 -05:00

24 lines
306 B
C

#ifndef EXTRA_H
#define EXTRA_H
// Items related to the Extra string of key-value pairs found in MxOb
struct Extra {
enum ActionType {
e_none = 0,
e_opendisk,
e_openram,
e_close,
e_start,
e_stop,
e_run,
e_exit,
e_enable,
e_disable,
e_notify,
e_unknown,
};
};
#endif // EXTRA_H