using UnityEngine.UIElements; namespace Roads { public interface IRoad { float Slope { get; } float MinY { get; } } }