using UnityEngine; namespace ProceduralToolkit.Buildings { public interface IConstructible { T Construct(Vector2 parentLayoutOrigin); } }