using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TransportGame.Model.Config { public class BuildingGeneratorConfig { /// /// Lot size /// public float LotSquareSize { get; set; } /// /// Space between lots /// public float LotSpacing { get; set; } public BuildingGeneratorConfig() { LotSquareSize = 1f; LotSpacing = 0.1f; } } }