MZ.GeneticSimulation.DataModel.World.World C# (CSharp) Метод

World() публичный Метод

Initializes a new instance of the World class.
public World ( ) : System.Collections.Generic
Результат System.Collections.Generic
        public World()
        {
            for (var i = 0; i < this.Species.Length; i++)
            {
                this.Species[i] = new List<Creature>(65536);
                this.Species[i].AddRange(Enumerable.Range(0, 1024).Select(_ => new Creature(i, this)));
            }
        }