2025-03-11 15:30:07 +08:00

11 lines
148 B
C#

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