14 lines
142 B
C
14 lines
142 B
C
#ifndef INCLUDED_ENUMS
|
|
#define INCLUDED_ENUMS
|
|
enum Mode {
|
|
Stealth,
|
|
LowVis,
|
|
HighVis
|
|
};
|
|
|
|
enum DisplayStyle {
|
|
Rain,
|
|
Congress
|
|
};
|
|
#endif
|