mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-09 23:50:25 +00:00
14 lines
224 B
C
14 lines
224 B
C
|
/* $Id$ */
|
||
|
|
||
|
/** @file house_type.h declaration of basic house types and enums */
|
||
|
|
||
|
#ifndef HOUSE_TYPE_H
|
||
|
#define HOUSE_TYPE_H
|
||
|
|
||
|
typedef uint16 HouseID;
|
||
|
typedef uint16 HouseClassID;
|
||
|
|
||
|
struct HouseSpec;
|
||
|
|
||
|
#endif /* HOUSE_TYPE_H */
|