Mercurial > hg > openttd
view src/console_type.h @ 10499:45ca88a8de7d draft
(svn r14754) -Codechange: get rid of _cmd_text and just pass it as (optional) parameter.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sun, 28 Dec 2008 14:37:19 +0000 (2008-12-28) |
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 */