Files
tbd-station-14/Content.Server/NPC/Pathfinding/GridPathfindingComponent.cs
metalgearsloth 0286b88388 NPC refactor (#10122)
Co-authored-by: metalgearsloth <metalgearsloth@gmail.com>
2022-09-06 00:28:23 +10:00

9 lines
234 B
C#

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