Pathfinding.GraphUpdateUtilities.IsPathPossible C# (CSharp) Method

IsPathPossible() private method

private IsPathPossible ( GraphNode n1, GraphNode n2 ) : bool
n1 GraphNode
n2 GraphNode
return bool
		public static bool IsPathPossible (GraphNode n1, GraphNode n2) {
			return n1.Walkable && n2.Walkable && n1.Area == n2.Area;
		}
		

Same methods

GraphUpdateUtilities::IsPathPossible ( List nodes ) : bool