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

10 lines
159 B
C#

using UnityEngine;
namespace UnityEditor.U2D.Animation
{
internal interface IRectSelector<T> : ISelector<T>
{
Rect rect { get; set; }
}
}