Ejemplo n.º 1
0
    /// <summary>
    /// Seeds the random number generator with a given value, then builds the game map.
    /// </summary>
    /// <param name="seedValue">The value with which to seed the RNG.</param>
    public void GenerateMap(int seedValue)
    {
        CustomFunctions.InitRandomWithValue(seedValue);

        MapBuilder();
    }