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

9 lines
234 B
C#
Raw Normal View History

namespace Content.Server.NPC.Pathfinding;
[RegisterComponent]
[Access(typeof(PathfindingSystem))]
public sealed class GridPathfindingComponent : Component
{
public readonly Dictionary<Vector2i, PathfindingChunk> Graph = new();
}