项目文件夹

文件
2026-07-13 13:13:17 +08:00

11 行
317 B
C#

#nullable enable
namespace T3.Editor.Gui.Interaction.Snapping;
/// <summary>
/// Called by the SnapHandler to look for potential snap targets
/// </summary>
/// <remarks>should return null if not snapping</remarks>
internal interface IValueSnapAttractor
{
void CheckForSnap(ref SnapResult result);
}