ISelector.cs 116 B

1234567
  1. namespace UnityEditor.U2D.Path
  2. {
  3. public interface ISelector<T>
  4. {
  5. bool Select(T element);
  6. }
  7. }