Editor/Road/ArchApproachLanding.cs

Editor-side implementation of IArchApproachLanding. It forwards landing and back-calculation calls to ArchCrossover helper methods, delegating TryLand and Back behavior.

namespace Sunless.Architecture;

public sealed class ArchApproachLanding : IArchApproachLanding
{
	public bool TryLand( ArchPlan plan, ArchApproachPart approach, ArchKit kit, float drag, out float run, out float height )
	{
		return ArchCrossover.Landing( plan, approach, kit, drag, out run, out height );
	}

	public float Back( ArchRoadPart road, ArchKit kit ) => ArchCrossover.Back( road, kit );
}