1using UnityEngine; 2using UnityEditor; 3 4namespace UnityEditor.U2D.Common.Path 5{ 6 internal interface ISnapping<T> 7 { 8 T Snap(T value); 9 } 10}