summaryrefslogtreecommitdiff
path: root/Other/AstarPathfindingDemo/Packages/com.arongranberg.astar/Core/ECS/Components/SearchState.cs
blob: 44c5eacedadb86263fcf3e6e2013ec68ffbfbaca (plain)
1
2
3
4
5
6
7
8
9
10
11
#if MODULE_ENTITIES
using Unity.Entities;
using Unity.Mathematics;

namespace Pathfinding.ECS {
	using Pathfinding;

	public struct SearchState : IComponentData {
	}
}
#endif