arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.common@dd402daace1b/Path/Editor/EditablePath/ISnapping.cs

11 lines
157 B
C#
Raw Normal View History

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