2021-09-09 20:42:29 -04:00

8 lines
116 B
C#

namespace UnityEditor.U2D.Path
{
public interface ISelector<T>
{
bool Select(T element);
}
}