9 lines
243 B
C#
9 lines
243 B
C#
namespace Content.Server.AI.Pathfinding;
|
|
|
|
[RegisterComponent]
|
|
[Access(typeof(PathfindingSystem))]
|
|
public sealed class GridPathfindingComponent : Component, IPathfindingGraph
|
|
{
|
|
public Dictionary<Vector2i, PathfindingChunk> Graph = new();
|
|
}
|