Files
badeend-go/Assets/Mapbox SDK/Mapbox/Unity/MeshGeneration/Interfaces/IFeaturePropertySettable.cs

10 lines
202 B
C#

namespace Mapbox.Unity.MeshGeneration.Interfaces
{
using System.Collections.Generic;
public interface IFeaturePropertySettable
{
void Set(Dictionary<string, object> props);
}
}