Files
stas-barecky/Library/PackageCache/com.unity.2d.common@51e9484895c4/Path/Editor/Selection/ISelector.cs
2026-01-08 20:43:08 +05:00

8 lines
125 B
C#

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