Files
2026-07-21 08:56:10 +03:00

8 lines
225 B
C#

public interface ISnapBehavior
{
/// <summary>
/// Called every frame after socket scanning.
/// Returns true if a snap was applied and false if failed.
/// </summary>
bool TrySnap(BlockEditContext ctx);
}