10 lines
202 B
C#
10 lines
202 B
C#
|
|
namespace Mapbox.Unity.MeshGeneration.Interfaces
|
||
|
|
{
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public interface IFeaturePropertySettable
|
||
|
|
{
|
||
|
|
void Set(Dictionary<string, object> props);
|
||
|
|
}
|
||
|
|
}
|