mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-29 11:11:15 +00:00
24 lines
306 B
C
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
|