11 lines
183 B
C#
11 lines
183 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Mapbox.Unity.MeshGeneration.Modifiers
|
|
{
|
|
public interface IReplaceable
|
|
{
|
|
HashSet<IReplacementCriteria> Criteria { get; set; }
|
|
|
|
}
|
|
}
|