Files
JuegoSim/Assets/_Project/Scripts/Code/BlockExtensions/Abstraction/ISnapBehavior.cs
T
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);
}