Unselector.cs 254 B

1234567891011121314
  1. using UnityEngine;
  2. namespace UnityEditor.U2D.Animation
  3. {
  4. internal class Unselector<T> : ISelector<T>
  5. {
  6. public ISelection<T> selection { get; set; }
  7. public void Select()
  8. {
  9. selection.Clear();
  10. }
  11. }
  12. }