8 lines
225 B
C#
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);
|
|
} |