Extension helper in the Editor assembly. Defines a static method RoomStanding as an extension on ArchPlan that returns the host ArchRoom for a given ArchSpanPart, delegating to plan.HostOf<ArchRoom>(span, table).
namespace Sunless.Architecture;
public static class ArchPlanSpans
{
public static ArchRoom RoomStanding( this ArchPlan plan, ArchSpanPart span, ArchKinds table = null ) =>
plan.HostOf<ArchRoom>( span, table );
}