#pragma warning disable 0282 // Allows the 'partial' keyword without warnings
#if MODULE_ENTITIES
using Unity.Entities;
using Unity.Mathematics;
namespace Pathfinding.ECS {
public partial struct JobStartOffMeshLinkTransition {
public EntityCommandBuffer commandBuffer;
///
/// This is a fallback for traversing off-mesh links in case the user has not specified a custom traversal method.
/// It is a coroutine which will move the agent from the start point of the link to the end point of the link.
/// It will also disable RVO for the agent while traversing the link.
///
public static System.Collections.Generic.IEnumerable