ISelector.cs 193 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace UnityEditor.U2D.Animation
  3. {
  4. internal interface ISelector<T>
  5. {
  6. ISelection<T> selection { get; set; }
  7. void Select();
  8. }
  9. }