mirror of
https://github.com/Kizuren/SynthMaze.git
synced 2026-01-12 01:18:44 +01:00
7 lines
116 B
C#
7 lines
116 B
C#
namespace UnityEditor.U2D.Path
|
|
{
|
|
public interface ISelector<T>
|
|
{
|
|
bool Select(T element);
|
|
}
|
|
}
|