Files
PixelJumperHero/Library/PackageCache/com.unity.2d.path@5.0.0/Editor/EditablePath/ISnapping.cs
2021-06-13 10:28:03 +02:00

11 lines
148 B
C#

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