Singularity/Library/PackageCache/com.unity.2d.animation@7.0.10/Editor/SkinningModule/Selectors/ISelector.cs

12 lines
193 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
using System.Collections.Generic;
namespace UnityEditor.U2D.Animation
{
internal interface ISelector<T>
{
ISelection<T> selection { get; set; }
void Select();
}
}