11 lines
183 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
using System.Collections.Generic;
namespace Mapbox.Unity.MeshGeneration.Modifiers
{
public interface IReplaceable
{
HashSet<IReplacementCriteria> Criteria { get; set; }
}
}