//--------------------------------------------------------------------- public Scenario(int startTime, int endTime, string species, string ecoregions, string ecoregionsMap, float?cellLength, string initCommunities, string communitiesMap, PlugInAndInitFile succession, PlugInAndInitFile[] disturbances, bool disturbRandom, PlugInAndInitFile[] otherPlugIns, uint?seed) { this.startTime = startTime; this.endTime = endTime; this.species = species; this.ecoregions = ecoregions; this.ecoregionsMap = ecoregionsMap; this.cellLength = cellLength; this.initCommunities = initCommunities; this.communitiesMap = communitiesMap; this.succession = succession; this.disturbances = disturbances; this.disturbRandom = disturbRandom; this.otherPlugIns = otherPlugIns; this.seed = seed; }
//--------------------------------------------------------------------- public Scenario(int startTime, int endTime, string species, string ecoregions, string ecoregionsMap, float? cellLength, int? blockSize, string initCommunities, string communitiesMap, PlugInAndInitFile succession, PlugInAndInitFile[] disturbances, bool disturbRandom, PlugInAndInitFile[] otherPlugIns, uint? seed) { this.startTime = startTime; this.endTime = endTime; this.species = species; this.ecoregions = ecoregions; this.ecoregionsMap = ecoregionsMap; this.cellLength = cellLength; this.blockSize = blockSize; this.initCommunities = initCommunities; this.communitiesMap = communitiesMap; this.succession = succession; this.disturbances = disturbances; this.disturbRandom = disturbRandom; this.otherPlugIns = otherPlugIns; this.seed = seed; }