Files
tbd-station-14/Content.Server/NPC/Pathfinding/PathResult.cs
2022-09-30 14:39:48 +10:00

10 lines
132 B
C#

namespace Content.Server.NPC.Pathfinding;
public enum PathResult : byte
{
NoPath,
PartialPath,
Path,
Continuing,
}