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

10 lines
202 B
C#

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