wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/EditablePath/ISnapping.cs
2025-01-02 14:50:41 +08:00

11 lines
157 B
C#

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