using System.Collections.Generic; namespace ProceduralToolkit.Buildings { public interface ILayout : ILayoutElement, IEnumerable { void Add(ILayoutElement element); } }