summaryrefslogtreecommitdiff
path: root/src/newgrf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf.h')
-rw-r--r--src/newgrf.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/newgrf.h b/src/newgrf.h
index 83690e003..172de0d5f 100644
--- a/src/newgrf.h
+++ b/src/newgrf.h
@@ -10,6 +10,7 @@
#include "cargotype.h"
#include "industry_type.h"
#include "station_type.h"
+#include "rail_type.h"
enum GrfLoadingStage {
GLS_FILESCAN,
@@ -98,6 +99,9 @@ struct GRFFile {
uint8 cargo_max;
CargoLabel *cargo_list;
uint8 cargo_map[NUM_CARGO];
+
+ uint8 railtype_max;
+ RailTypeLabel *railtype_list;
};
extern GRFFile *_first_grffile;