Files
BookRPG/Library/PackageCache/com.unity.2d.common@edfe77495b67/Path/Editor/EditablePath/ISnapping.cs
2026-07-16 21:49:59 +01:00

11 lines
157 B
C#

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