berto
Posts: 20708
Joined: 3/13/2002 From: metro Chicago, Illinois, USA Status: offline
|
quote:
ORIGINAL: Big Ivan Fight over the face of the entire earth from the North Pole to the South Pole, from the Urals to the Alps to the Rockies! Includes terrain found on all seven continents... // Definition of region values. enum RegionValue { XDefaultRegion = -1, // all games XWestEurope, // WF, CW XEastEurope, // EF, CW XSouthEurope, // WF, CW XWestAsia, // ME, CW XEastAsia, // PF, VN, CW XSouthAsia, // PF, CW XNorthAfrica, // WF, ME, CW XAfrica, // CW XLatinAmerica, // CW XPacific // PF, CW }; const int NumRegions = XPacific + 1; // excluding XDefaultRegion // Definition of biome values. enum BiomeValue { XDefaultBiome = -1, // all games XTemperateForest, // EF, WF, PF, VN, CW XTemperateGrassland, // EF, PF, CW XMediterranean, // WF, ME, CW XDesert, // WF, ME, CW XTropicalRainforest, // PF, VN, CW XSubTropicalForest, // PF, VN, CW XTaiga, // EF, WF, CW XTundra, // EF, WF, PF, CW XAlpine // WF, CW }; const int NumBiomes = XAlpine + 1; // excluding XDefaultBiome
_____________________________
|