2021-09-09 20:42:29 -04:00

11 lines
148 B
C#

using UnityEngine;
using UnityEditor;
namespace UnityEditor.U2D.Path
{
public interface ISnapping<T>
{
T Snap(T value);
}
}