2021-03-30 17:27:50 +08:00

12 lines
161 B
C#

namespace Mapbox.Unity.Map
{
public interface ISubLayerDarkStyle : ISubLayerStyle
{
float Opacity { get; set; }
void SetAsStyle(float opacity);
}
}