(svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.

This commit is contained in:
rubidium
2008-05-24 10:35:15 +00:00
parent 6c20f77330
commit 6884f9cb41
9 changed files with 144 additions and 149 deletions

View File

@@ -11,4 +11,14 @@ enum IConsoleModes {
ICONSOLE_CLOSED
};
enum ConsoleColour {
CC_DEFAULT = 1,
CC_ERROR = 3,
CC_WARNING = 13,
CC_INFO = 8,
CC_DEBUG = 5,
CC_COMMAND = 2,
CC_WHITE = 12,
};
#endif /* CONSOLE_TYPE_H */