mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
17 lines
299 B
C
17 lines
299 B
C
|
/* $Id$ */
|
||
|
|
||
|
/** @file industry_type.h Types related to the industry. */
|
||
|
|
||
|
#ifndef INDUSTRY_TYPE_H
|
||
|
#define INDUSTRY_TYPE_H
|
||
|
|
||
|
typedef uint16 IndustryID;
|
||
|
typedef uint16 IndustryGfx;
|
||
|
typedef uint8 IndustryType;
|
||
|
struct Industry;
|
||
|
|
||
|
struct IndustrySpec;
|
||
|
struct IndustryTileSpec;
|
||
|
|
||
|
#endif /* INDUSTRY_TYPE_H */
|