wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/EditablePath/ISnapping.cs
2024-12-30 12:56:27 +08:00

11 lines
157 B
C#

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