Files

10 lines
132 B
C#
Raw Permalink Normal View History

2022-09-30 14:39:48 +10:00
namespace Content.Server.NPC.Pathfinding;
public enum PathResult : byte
{
NoPath,
PartialPath,
Path,
Continuing,
}