mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-22 13:09:38 +01:00
16 lines
203 B
C
16 lines
203 B
C
/* $Id$ */
|
|
|
|
/** @file signs_type.h Types related to signs */
|
|
|
|
#ifndef SIGNS_TYPE_H
|
|
#define SIGNS_TYPE_H
|
|
|
|
typedef uint16 SignID;
|
|
struct Sign;
|
|
|
|
enum {
|
|
INVALID_SIGN = 0xFFFF,
|
|
};
|
|
|
|
#endif /* SIGNS_TYPE_H */
|