Add pathfinding support for NPCs climbing tables (#17415)

This commit is contained in:
Vordenburg
2023-07-28 02:37:29 -04:00
committed by GitHub
parent 494b9e5b93
commit 49f3f07e30
11 changed files with 114 additions and 15 deletions

View File

@@ -115,4 +115,9 @@ public enum PathfindingBreadcrumbFlag : ushort
/// Is there access required
/// </summary>
Access = 1 << 3,
/// <summary>
/// Is there climbing involved
/// </summary>
Climb = 1 << 4,
}