wuxianshengcong/Library/PackageCache/com.unity.2d.common@8.0.3/Path/Editor/EditablePath/ISnapping.cs

11 lines
157 B
C#
Raw Permalink Normal View History

2025-01-02 14:49:00 +08:00
using UnityEngine;
using UnityEditor;
namespace UnityEditor.U2D.Common.Path
{
internal interface ISnapping<T>
{
T Snap(T value);
}
}