27 lines
547 B
C#
27 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TransportGame.Model.Config
|
|
{
|
|
public class BuildingGeneratorConfig
|
|
{
|
|
/// <summary>
|
|
/// Lot size
|
|
/// </summary>
|
|
public float LotSquareSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// Space between lots
|
|
/// </summary>
|
|
public float LotSpacing { get; set; }
|
|
|
|
public BuildingGeneratorConfig()
|
|
{
|
|
LotSquareSize = 1f;
|
|
LotSpacing = 0.1f;
|
|
}
|
|
}
|
|
}
|