Example #1
0
        private int[,] generateLowTemps()
        {
            int startingValue = (int)Math.Round(randy.NextDouble() * STARTING_LOW_TEMP_RANGE + STARTING_LOW_TEMP_MIN, 0);

            return(intLayerGenerator.GenerateIntLayer(LOW_TEMP_MIN, LOW_TEMP_MAX, TEMP_CHANGE_BY, startingValue, false));
        }