mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-02-11 16:54:42 +00:00
15 lines
229 B
C
15 lines
229 B
C
|
/* $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
|
||
|
};
|
||
|
|
||
|
#endif /* CONSOLE_TYPE_H */
|