Files
OldThink/Content.Server/AI/Pathfinding/GridPathfindingComponent.cs

9 lines
243 B
C#
Raw Normal View History

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