ICircleSelector.cs 164 B

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