ProjectDDD/Packages/com.arongranberg.astar/Core/ECS/Components/ReadyToTraverseOffMeshLink.cs
2025-07-08 19:46:31 +09:00

11 lines
280 B
C#

#if MODULE_ENTITIES
using Unity.Entities;
namespace Pathfinding.ECS {
/// <summary>Enabled if the agnet is ready to start traversing an off-mesh link</summary>
[System.Serializable]
public struct ReadyToTraverseOffMeshLink : IComponentData, IEnableableComponent {
}
}
#endif