mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
2477b89e32
* add actions forward decl header * newline * format * remove existing fwd declares * Headers * replace COMPAT_MODE check * flip --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
21 lines
390 B
C++
21 lines
390 B
C++
// This file was automatically generated by the actionheadergen tool.
|
|
// Please do not manually edit this file.
|
|
#ifndef NOCD_ACTIONS_H
|
|
#define NOCD_ACTIONS_H
|
|
|
|
namespace NocdScript
|
|
{
|
|
#if __cplusplus >= 201103L
|
|
enum Script : int {
|
|
#else
|
|
enum Script {
|
|
#endif
|
|
c_noneNocd = -1,
|
|
|
|
c_NoCD_Movie = 0,
|
|
c_CDSpin1_Smk = 1,
|
|
c_Iicx62In_Wave = 2
|
|
};
|
|
} // namespace NocdScript
|
|
|
|
#endif // NOCD_ACTIONS_H
|