9 lines
234 B
C#
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();
|
||
|
|
}
|