Ejemplo n.º 1
0
        public void startTheProgram()
        {
            Input userInput = new Input();

            userInput.askForInput();
            World earth = new World(Input.inputXLength, Input.inputYLength);

            //earth.generateWorldAsGrid();
            //earth.populateGrid();

            earth.runOneStepOfTime();


            Console.ReadLine();
        }