2022-05-16 13:21:00 +10:00
|
|
|
namespace Content.Server.AI.Pathfinding;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
2022-06-07 15:26:28 +02:00
|
|
|
[Access(typeof(PathfindingSystem))]
|
2022-05-16 13:21:00 +10:00
|
|
|
public sealed class GridPathfindingComponent : Component, IPathfindingGraph
|
|
|
|
|
{
|
|
|
|
|
public Dictionary<Vector2i, PathfindingChunk> Graph = new();
|
|
|
|
|
}
|