Example #1
0
    public static Vector3 RandomRoomSize(IntRange widthRange, IntRange lengthRange)
    {
        int width  = widthRange.RandomInclusive();
        int length = lengthRange.RandomInclusive();

        return(new Vector3(width, 10, length));
    }