namespace Mapbox.Unity.Map { using UnityEngine; public interface ISubLayerCustomStyleOptions { /// /// Gets or sets the top material. /// /// The top material. Material TopMaterial { get; set; } /// /// Gets or sets the side material. /// /// The side material. Material SideMaterial { get; set; } } }