Net-Game/Library/PackageCache/com.unity.2d.common@bb1fc9b3d81b/Path/Editor/EditablePath/ISnapping.cs
2025-03-28 08:33:16 -04:00

11 lines
157 B
C#

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