(svn r7345) -Codechange: enumification of NewGRF loading stage, and move enum definition to header for future use.

This commit is contained in:
peter1138
2006-12-03 23:46:54 +00:00
parent 3adf490f1f
commit a36232f69b
2 changed files with 12 additions and 13 deletions

View File

@@ -5,6 +5,13 @@
#include "station.h"
typedef enum GrfLoadingStage {
GLS_LABELSCAN,
GLS_INIT,
GLS_ACTIVATION,
GLS_END,
} GrfLoadingStage;
typedef struct GRFLabel {
byte label;
uint32 nfo_line;