ProjectDDD/Packages/com.arongranberg.astar/Core/ECS/Components/SearchState.cs

12 lines
175 B (Stored with Git LFS)
C#

#if MODULE_ENTITIES
using Unity.Entities;
using Unity.Mathematics;
namespace Pathfinding.ECS {
using Pathfinding;
public struct SearchState : IComponentData {
}
}
#endif