src/newgrf.h
changeset 6469 05a2e97144ec
parent 5838 9c3129cb019b
child 6473 03480a0f016e
--- a/src/newgrf.h	Sat Feb 24 19:26:45 2007 +0000
+++ b/src/newgrf.h	Sat Feb 24 19:36:47 2007 +0000
@@ -6,6 +6,7 @@
 #include "station.h"
 #include "newgrf_config.h"
 #include "helpers.hpp"
+#include "cargotype.h"
 
 typedef enum GrfLoadingStage {
 	GLS_FILESCAN,
@@ -60,6 +61,9 @@
 	uint param_end; /// one more than the highest set parameter
 
 	GRFLabel *label; ///< Pointer to the first label. This is a linked list, not an array.
+
+	uint8 cargo_max;
+	CargoLabel *cargo_list;
 } GRFFile;
 
 extern GRFFile *_first_grffile;