using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace mmoRLserver { public class Instance { public List possibleBiomes = new List(); public string variation = ""; public Instance(Biome biome, string variation = "") { possibleBiomes.Add(biome); this.variation = variation; } public Instance(Biome[] biomes, string variation = "") { for (int i = 0; i < biomes.Length; i++) possibleBiomes.Add(biomes[i]); this.variation = variation; } } }