Singularity/Library/PackageCache/com.unity.2d.animation@7.0.10/Editor/SkinningModule/Selectors/ISelector.cs
2024-05-06 11:45:45 -07:00

12 lines
193 B
C#

using System.Collections.Generic;
namespace UnityEditor.U2D.Animation
{
internal interface ISelector<T>
{
ISelection<T> selection { get; set; }
void Select();
}
}