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