Files
2026-07-16 21:49:59 +01:00

8 lines
125 B
C#

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