mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 16:08:05 -05:00
f50b771fff
* Push changes * fixes * Implement Infocenter::HandleEndAction * match Infocenter::StopCutScene * implement Infocenter::HandleKeyPress * fixes * Update infocenter.cpp * Update legoworld.cpp * use enums * WIP Fixes * Fix * Fix * Fix * Rename function * Change enum * Update enums * Refactor another enum * Refactor MxDSType * Refactor HashTableOpt * Fixes * Refactor tickle enum * Update other enums * Add EnumConstantName to ncc * Move enum to global namespace * Rename enum --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
23 lines
306 B
C
23 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
|