PathResult.cs 132 B

123456789
  1. namespace Content.Server.NPC.Pathfinding;
  2. public enum PathResult : byte
  3. {
  4. NoPath,
  5. PartialPath,
  6. Path,
  7. Continuing,
  8. }