IRectSelector.cs 159 B

123456789
  1. using UnityEngine;
  2. namespace UnityEditor.U2D.Animation
  3. {
  4. internal interface IRectSelector<T> : ISelector<T>
  5. {
  6. Rect rect { get; set; }
  7. }
  8. }