Nexus/Library/PackageCache/com.unity.2d.common@51e9484895c4/Path/Editor/Selection/ISelector.cs
2026-01-06 17:23:00 +01:00

8 lines
125 B
C#

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