Mercurial > hg > openttd
view src/console_type.h @ 10515:7156262cf0c9 draft
(svn r14772) -Codechange: make the "dump log of game to reproduce" desync debug stuff a runtime configurable debug option instead of a compile time option.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Mon, 29 Dec 2008 21:50:25 +0000 |
parents | ee85444554a1 |
children | bc7926153e19 |
line wrap: on
line source
/* $Id$ */ /** @file console_type.h Globally used console related types. */ #ifndef CONSOLE_TYPE_H #define CONSOLE_TYPE_H enum IConsoleModes { ICONSOLE_FULL, ICONSOLE_OPENED, 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 */