### YamlMime:ManagedReference items: - uid: MLEM.Pathfinding.AStar2 commentId: T:MLEM.Pathfinding.AStar2 id: AStar2 parent: MLEM.Pathfinding children: - MLEM.Pathfinding.AStar2.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) - MLEM.Pathfinding.AStar2.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) - MLEM.Pathfinding.AStar2.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) langs: - csharp - vb name: AStar2 nameWithType: AStar2 fullName: MLEM.Pathfinding.AStar2 type: Class source: remote: path: MLEM/Pathfinding/AStar2.cs branch: main repo: https://github.com/Ellpeck/MLEM id: AStar2 path: ../MLEM/Pathfinding/AStar2.cs startLine: 9 assemblies: - MLEM namespace: MLEM.Pathfinding summary: A 2-dimensional implementation of that uses for positions, and the manhattan distance as its heuristic. example: [] syntax: content: 'public class AStar2 : AStar' content.vb: Public Class AStar2 Inherits AStar(Of Point) inheritance: - System.Object - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} inheritedMembers: - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCostFunction - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCost - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultMaxTries - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultAdditionalNeighbors - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTriesNeeded - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTimeNeeded - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.FindPath(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) - MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.TryFindPath(Microsoft.Xna.Framework.Point,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Point},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Point}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) - System.Object.ToString - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - uid: MLEM.Pathfinding.AStar2.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) commentId: M:MLEM.Pathfinding.AStar2.#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) id: '#ctor(MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Boolean,System.Single,System.Int32,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors)' parent: MLEM.Pathfinding.AStar2 langs: - csharp - vb name: AStar2(GetCost, bool, float, int, CollectAdditionalNeighbors) nameWithType: AStar2.AStar2(AStar.GetCost, bool, float, int, AStar.CollectAdditionalNeighbors) fullName: MLEM.Pathfinding.AStar2.AStar2(MLEM.Pathfinding.AStar.GetCost, bool, float, int, MLEM.Pathfinding.AStar.CollectAdditionalNeighbors) type: Constructor source: remote: path: MLEM/Pathfinding/AStar2.cs branch: main repo: https://github.com/Ellpeck/MLEM id: .ctor path: ../MLEM/Pathfinding/AStar2.cs startLine: 14 assemblies: - MLEM namespace: MLEM.Pathfinding example: [] syntax: content: public AStar2(AStar.GetCost defaultCostFunction, bool includeDiagonals, float defaultCost = 1, int defaultMaxTries = 10000, AStar.CollectAdditionalNeighbors defaultAdditionalNeighbors = null) parameters: - id: defaultCostFunction type: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost - id: includeDiagonals type: System.Boolean - id: defaultCost type: System.Single - id: defaultMaxTries type: System.Int32 - id: defaultAdditionalNeighbors type: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors content.vb: Public Sub New(defaultCostFunction As AStar(Of Point).GetCost, includeDiagonals As Boolean, defaultCost As Single = 1, defaultMaxTries As Integer = 10000, defaultAdditionalNeighbors As AStar(Of Point).CollectAdditionalNeighbors = Nothing) overload: MLEM.Pathfinding.AStar2.#ctor* nameWithType.vb: AStar2.New(AStar(Of Point).GetCost, Boolean, Single, Integer, AStar(Of Point).CollectAdditionalNeighbors) fullName.vb: MLEM.Pathfinding.AStar2.New(MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).GetCost, Boolean, Single, Integer, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).CollectAdditionalNeighbors) name.vb: New(GetCost, Boolean, Single, Integer, CollectAdditionalNeighbors) - uid: MLEM.Pathfinding.AStar2.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) commentId: M:MLEM.Pathfinding.AStar2.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) id: GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) parent: MLEM.Pathfinding.AStar2 langs: - csharp - vb name: GetHeuristicDistance(Point, Point) nameWithType: AStar2.GetHeuristicDistance(Point, Point) fullName: MLEM.Pathfinding.AStar2.GetHeuristicDistance(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point) type: Method source: remote: path: MLEM/Pathfinding/AStar2.cs branch: main repo: https://github.com/Ellpeck/MLEM id: GetHeuristicDistance path: ../MLEM/Pathfinding/AStar2.cs startLine: 20 assemblies: - MLEM namespace: MLEM.Pathfinding summary: >- This method should implement a heuristic that determines the total distance between the given start position and the given second position position. Note that this is multiplied with the automatically, so no costs need to be considered in this method's return value. example: [] syntax: content: protected override float GetHeuristicDistance(Point start, Point position) parameters: - id: start type: Microsoft.Xna.Framework.Point description: The start position. - id: position type: Microsoft.Xna.Framework.Point description: The position to get the distance to. return: type: System.Single description: The total distance between the two positions. content.vb: Protected Overrides Function GetHeuristicDistance(start As Point, position As Point) As Single overridden: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) overload: MLEM.Pathfinding.AStar2.GetHeuristicDistance* - uid: MLEM.Pathfinding.AStar2.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) commentId: M:MLEM.Pathfinding.AStar2.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) id: CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) parent: MLEM.Pathfinding.AStar2 langs: - csharp - vb name: CollectNeighbors(Point, ISet) nameWithType: AStar2.CollectNeighbors(Point, ISet) fullName: MLEM.Pathfinding.AStar2.CollectNeighbors(Microsoft.Xna.Framework.Point, System.Collections.Generic.ISet) type: Method source: remote: path: MLEM/Pathfinding/AStar2.cs branch: main repo: https://github.com/Ellpeck/MLEM id: CollectNeighbors path: ../MLEM/Pathfinding/AStar2.cs startLine: 25 assemblies: - MLEM namespace: MLEM.Pathfinding summary: This method should populate a set of positions that are considered neighbors to the given position. For example, this method might return directly adjacent positions, diagonal positions, or faraway positions that can be teleported to. example: [] syntax: content: protected override void CollectNeighbors(Point position, ISet neighbors) parameters: - id: position type: Microsoft.Xna.Framework.Point description: The position whose neighbors to return. - id: neighbors type: System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point} description: The set to populate with neighbors. content.vb: Protected Overrides Sub CollectNeighbors(position As Point, neighbors As ISet(Of Point)) overridden: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) overload: MLEM.Pathfinding.AStar2.CollectNeighbors* nameWithType.vb: AStar2.CollectNeighbors(Point, ISet(Of Point)) fullName.vb: MLEM.Pathfinding.AStar2.CollectNeighbors(Microsoft.Xna.Framework.Point, System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Point)) name.vb: CollectNeighbors(Point, ISet(Of Point)) references: - uid: MLEM.Pathfinding.AStar`1 commentId: T:MLEM.Pathfinding.AStar`1 href: MLEM.Pathfinding.AStar-1.html name: AStar nameWithType: AStar fullName: MLEM.Pathfinding.AStar nameWithType.vb: AStar(Of T) fullName.vb: MLEM.Pathfinding.AStar(Of T) name.vb: AStar(Of T) spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - name: T - name: '>' spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - name: T - name: ) - uid: Microsoft.Xna.Framework.Point commentId: T:Microsoft.Xna.Framework.Point parent: Microsoft.Xna.Framework isExternal: true name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point - uid: MLEM.Pathfinding commentId: N:MLEM.Pathfinding href: MLEM.html name: MLEM.Pathfinding nameWithType: MLEM.Pathfinding fullName: MLEM.Pathfinding spec.csharp: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Pathfinding name: Pathfinding href: MLEM.Pathfinding.html spec.vb: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Pathfinding name: Pathfinding href: MLEM.Pathfinding.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} parent: MLEM.Pathfinding definition: MLEM.Pathfinding.AStar`1 href: MLEM.Pathfinding.AStar-1.html name: AStar nameWithType: AStar fullName: MLEM.Pathfinding.AStar nameWithType.vb: AStar(Of Point) fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point) name.vb: AStar(Of Point) spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCostFunction commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCostFunction parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.DefaultCostFunction href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCostFunction name: DefaultCostFunction nameWithType: AStar.DefaultCostFunction fullName: MLEM.Pathfinding.AStar.DefaultCostFunction nameWithType.vb: AStar(Of Point).DefaultCostFunction fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).DefaultCostFunction - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCost commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultCost parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.DefaultCost href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCost name: DefaultCost nameWithType: AStar.DefaultCost fullName: MLEM.Pathfinding.AStar.DefaultCost nameWithType.vb: AStar(Of Point).DefaultCost fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).DefaultCost - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultMaxTries commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultMaxTries parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.DefaultMaxTries href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultMaxTries name: DefaultMaxTries nameWithType: AStar.DefaultMaxTries fullName: MLEM.Pathfinding.AStar.DefaultMaxTries nameWithType.vb: AStar(Of Point).DefaultMaxTries fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).DefaultMaxTries - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultAdditionalNeighbors commentId: F:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.DefaultAdditionalNeighbors parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultAdditionalNeighbors name: DefaultAdditionalNeighbors nameWithType: AStar.DefaultAdditionalNeighbors fullName: MLEM.Pathfinding.AStar.DefaultAdditionalNeighbors nameWithType.vb: AStar(Of Point).DefaultAdditionalNeighbors fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).DefaultAdditionalNeighbors - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTriesNeeded commentId: P:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTriesNeeded parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.LastTriesNeeded href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTriesNeeded name: LastTriesNeeded nameWithType: AStar.LastTriesNeeded fullName: MLEM.Pathfinding.AStar.LastTriesNeeded nameWithType.vb: AStar(Of Point).LastTriesNeeded fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).LastTriesNeeded - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTimeNeeded commentId: P:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.LastTimeNeeded parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.LastTimeNeeded href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTimeNeeded name: LastTimeNeeded nameWithType: AStar.LastTimeNeeded fullName: MLEM.Pathfinding.AStar.LastTimeNeeded nameWithType.vb: AStar(Of Point).LastTimeNeeded fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).LastTimeNeeded - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.FindPath(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.FindPath(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ name: FindPath(Point, Point, GetCost, float?, int?, CollectAdditionalNeighbors) nameWithType: AStar.FindPath(Point, Point, AStar.GetCost, float?, int?, AStar.CollectAdditionalNeighbors) fullName: MLEM.Pathfinding.AStar.FindPath(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, MLEM.Pathfinding.AStar.GetCost, float?, int?, MLEM.Pathfinding.AStar.CollectAdditionalNeighbors) nameWithType.vb: AStar(Of Point).FindPath(Point, Point, AStar(Of Point).GetCost, Single?, Integer?, AStar(Of Point).CollectAdditionalNeighbors) fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).FindPath(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).CollectAdditionalNeighbors) name.vb: FindPath(Point, Point, GetCost, Single?, Integer?, CollectAdditionalNeighbors) spec.csharp: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.FindPath(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) name: FindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.FindPath(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) name: FindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.TryFindPath(Microsoft.Xna.Framework.Point,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Point},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Point}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.TryFindPath(Microsoft.Xna.Framework.Point,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Point},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Point}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ name: TryFindPath(Point, ICollection, out Stack, out float, GetCost, float?, int?, CollectAdditionalNeighbors) nameWithType: AStar.TryFindPath(Point, ICollection, out Stack, out float, AStar.GetCost, float?, int?, AStar.CollectAdditionalNeighbors) fullName: MLEM.Pathfinding.AStar.TryFindPath(Microsoft.Xna.Framework.Point, System.Collections.Generic.ICollection, out System.Collections.Generic.Stack, out float, MLEM.Pathfinding.AStar.GetCost, float?, int?, MLEM.Pathfinding.AStar.CollectAdditionalNeighbors) nameWithType.vb: AStar(Of Point).TryFindPath(Point, ICollection(Of Point), Stack(Of Point), Single, AStar(Of Point).GetCost, Single?, Integer?, AStar(Of Point).CollectAdditionalNeighbors) fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).TryFindPath(Microsoft.Xna.Framework.Point, System.Collections.Generic.ICollection(Of Microsoft.Xna.Framework.Point), System.Collections.Generic.Stack(Of Microsoft.Xna.Framework.Point), Single, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).CollectAdditionalNeighbors) name.vb: TryFindPath(Point, ICollection(Of Point), Stack(Of Point), Single, GetCost, Single?, Integer?, CollectAdditionalNeighbors) spec.csharp: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.TryFindPath(Microsoft.Xna.Framework.Point,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Point},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Point}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) name: TryFindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' - name: ',' - name: " " - name: out - name: " " - uid: System.Collections.Generic.Stack`1 name: Stack isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1 - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' - name: ',' - name: " " - name: out - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.TryFindPath(Microsoft.Xna.Framework.Point,System.Collections.Generic.ICollection{Microsoft.Xna.Framework.Point},System.Collections.Generic.Stack{Microsoft.Xna.Framework.Point}@,System.Single@,MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors) name: TryFindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - name: ',' - name: " " - uid: System.Collections.Generic.Stack`1 name: Stack isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1 - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: MLEM.Pathfinding.AStar`1.DefaultCostFunction commentId: F:MLEM.Pathfinding.AStar`1.DefaultCostFunction href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCostFunction name: DefaultCostFunction nameWithType: AStar.DefaultCostFunction fullName: MLEM.Pathfinding.AStar.DefaultCostFunction nameWithType.vb: AStar(Of T).DefaultCostFunction fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultCostFunction - uid: MLEM.Pathfinding.AStar`1.DefaultCost commentId: F:MLEM.Pathfinding.AStar`1.DefaultCost href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultCost name: DefaultCost nameWithType: AStar.DefaultCost fullName: MLEM.Pathfinding.AStar.DefaultCost nameWithType.vb: AStar(Of T).DefaultCost fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultCost - uid: MLEM.Pathfinding.AStar`1.DefaultMaxTries commentId: F:MLEM.Pathfinding.AStar`1.DefaultMaxTries href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultMaxTries name: DefaultMaxTries nameWithType: AStar.DefaultMaxTries fullName: MLEM.Pathfinding.AStar.DefaultMaxTries nameWithType.vb: AStar(Of T).DefaultMaxTries fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultMaxTries - uid: MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors commentId: F:MLEM.Pathfinding.AStar`1.DefaultAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_DefaultAdditionalNeighbors name: DefaultAdditionalNeighbors nameWithType: AStar.DefaultAdditionalNeighbors fullName: MLEM.Pathfinding.AStar.DefaultAdditionalNeighbors nameWithType.vb: AStar(Of T).DefaultAdditionalNeighbors fullName.vb: MLEM.Pathfinding.AStar(Of T).DefaultAdditionalNeighbors - uid: MLEM.Pathfinding.AStar`1.LastTriesNeeded commentId: P:MLEM.Pathfinding.AStar`1.LastTriesNeeded href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTriesNeeded name: LastTriesNeeded nameWithType: AStar.LastTriesNeeded fullName: MLEM.Pathfinding.AStar.LastTriesNeeded nameWithType.vb: AStar(Of T).LastTriesNeeded fullName.vb: MLEM.Pathfinding.AStar(Of T).LastTriesNeeded - uid: MLEM.Pathfinding.AStar`1.LastTimeNeeded commentId: P:MLEM.Pathfinding.AStar`1.LastTimeNeeded href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_LastTimeNeeded name: LastTimeNeeded nameWithType: AStar.LastTimeNeeded fullName: MLEM.Pathfinding.AStar.LastTimeNeeded nameWithType.vb: AStar(Of T).LastTimeNeeded fullName.vb: MLEM.Pathfinding.AStar(Of T).LastTimeNeeded - uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) commentId: M:MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) isExternal: true href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ name: FindPath(T, T, GetCost, float?, int?, CollectAdditionalNeighbors) nameWithType: AStar.FindPath(T, T, AStar.GetCost, float?, int?, AStar.CollectAdditionalNeighbors) fullName: MLEM.Pathfinding.AStar.FindPath(T, T, MLEM.Pathfinding.AStar.GetCost, float?, int?, MLEM.Pathfinding.AStar.CollectAdditionalNeighbors) nameWithType.vb: AStar(Of T).FindPath(T, T, AStar(Of T).GetCost, Single?, Integer?, AStar(Of T).CollectAdditionalNeighbors) fullName.vb: MLEM.Pathfinding.AStar(Of T).FindPath(T, T, MLEM.Pathfinding.AStar(Of T).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors) name.vb: FindPath(T, T, GetCost, Single?, Integer?, CollectAdditionalNeighbors) spec.csharp: - uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) name: FindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - name: T - name: ',' - name: " " - name: T - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar`1.FindPath(`0,`0,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) name: FindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_FindPath__0__0_MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - name: T - name: ',' - name: " " - name: T - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) - uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) commentId: M:MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) isExternal: true href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ name: TryFindPath(T, ICollection, out Stack, out float, GetCost, float?, int?, CollectAdditionalNeighbors) nameWithType: AStar.TryFindPath(T, ICollection, out Stack, out float, AStar.GetCost, float?, int?, AStar.CollectAdditionalNeighbors) fullName: MLEM.Pathfinding.AStar.TryFindPath(T, System.Collections.Generic.ICollection, out System.Collections.Generic.Stack, out float, MLEM.Pathfinding.AStar.GetCost, float?, int?, MLEM.Pathfinding.AStar.CollectAdditionalNeighbors) nameWithType.vb: AStar(Of T).TryFindPath(T, ICollection(Of T), Stack(Of T), Single, AStar(Of T).GetCost, Single?, Integer?, AStar(Of T).CollectAdditionalNeighbors) fullName.vb: MLEM.Pathfinding.AStar(Of T).TryFindPath(T, System.Collections.Generic.ICollection(Of T), System.Collections.Generic.Stack(Of T), Single, MLEM.Pathfinding.AStar(Of T).GetCost, Single?, Integer?, MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors) name.vb: TryFindPath(T, ICollection(Of T), Stack(Of T), Single, GetCost, Single?, Integer?, CollectAdditionalNeighbors) spec.csharp: - uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) name: TryFindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - name: T - name: ',' - name: " " - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: < - name: T - name: '>' - name: ',' - name: " " - name: out - name: " " - uid: System.Collections.Generic.Stack`1 name: Stack isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1 - name: < - name: T - name: '>' - name: ',' - name: " " - name: out - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: float isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: int isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar`1.TryFindPath(`0,System.Collections.Generic.ICollection{`0},System.Collections.Generic.Stack{`0}@,System.Single@,MLEM.Pathfinding.AStar{`0}.GetCost,System.Nullable{System.Single},System.Nullable{System.Int32},MLEM.Pathfinding.AStar{`0}.CollectAdditionalNeighbors) name: TryFindPath href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_TryFindPath__0_System_Collections_Generic_ICollection__0__System_Collections_Generic_Stack__0___System_Single__MLEM_Pathfinding_AStar__0__GetCost_System_Nullable_System_Single__System_Nullable_System_Int32__MLEM_Pathfinding_AStar__0__CollectAdditionalNeighbors_ - name: ( - name: T - name: ',' - name: " " - uid: System.Collections.Generic.ICollection`1 name: ICollection isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1 - name: ( - name: Of - name: " " - name: T - name: ) - name: ',' - name: " " - uid: System.Collections.Generic.Stack`1 name: Stack isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.stack-1 - name: ( - name: Of - name: " " - name: T - name: ) - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - name: ',' - name: " " - uid: System.Single name: Single isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single - name: '?' - name: ',' - name: " " - uid: System.Int32 name: Integer isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 - name: '?' - name: ',' - name: " " - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - name: ) - uid: MLEM.Pathfinding.AStar2.#ctor* commentId: Overload:MLEM.Pathfinding.AStar2.#ctor href: MLEM.Pathfinding.AStar2.html#MLEM_Pathfinding_AStar2__ctor_MLEM_Pathfinding_AStar_Microsoft_Xna_Framework_Point__GetCost_System_Boolean_System_Single_System_Int32_MLEM_Pathfinding_AStar_Microsoft_Xna_Framework_Point__CollectAdditionalNeighbors_ name: AStar2 nameWithType: AStar2.AStar2 fullName: MLEM.Pathfinding.AStar2.AStar2 nameWithType.vb: AStar2.New fullName.vb: MLEM.Pathfinding.AStar2.New name.vb: New - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost parent: MLEM.Pathfinding definition: MLEM.Pathfinding.AStar`1.GetCost href: MLEM.Pathfinding.AStar-1.html name: AStar.GetCost nameWithType: AStar.GetCost fullName: MLEM.Pathfinding.AStar.GetCost nameWithType.vb: AStar(Of Point).GetCost fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).GetCost name.vb: AStar(Of Point).GetCost spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' - name: . - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - name: . - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.boolean name: bool nameWithType: bool fullName: bool nameWithType.vb: Boolean fullName.vb: Boolean name.vb: Boolean - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: System.Int32 commentId: T:System.Int32 parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.int32 name: int nameWithType: int fullName: int nameWithType.vb: Integer fullName.vb: Integer name.vb: Integer - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors commentId: T:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors parent: MLEM.Pathfinding definition: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.html name: AStar.CollectAdditionalNeighbors nameWithType: AStar.CollectAdditionalNeighbors fullName: MLEM.Pathfinding.AStar.CollectAdditionalNeighbors nameWithType.vb: AStar(Of Point).CollectAdditionalNeighbors fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).CollectAdditionalNeighbors name.vb: AStar(Of Point).CollectAdditionalNeighbors spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' - name: . - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - name: . - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - uid: MLEM.Pathfinding.AStar`1.GetCost commentId: T:MLEM.Pathfinding.AStar`1.GetCost parent: MLEM.Pathfinding href: MLEM.Pathfinding.AStar-1.html name: AStar.GetCost nameWithType: AStar.GetCost fullName: MLEM.Pathfinding.AStar.GetCost nameWithType.vb: AStar(Of T).GetCost fullName.vb: MLEM.Pathfinding.AStar(Of T).GetCost name.vb: AStar(Of T).GetCost spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - name: T - name: '>' - name: . - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - name: T - name: ) - name: . - uid: MLEM.Pathfinding.AStar`1.GetCost name: GetCost href: MLEM.Pathfinding.AStar-1.GetCost.html - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors commentId: T:MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors parent: MLEM.Pathfinding href: MLEM.Pathfinding.AStar-1.html name: AStar.CollectAdditionalNeighbors nameWithType: AStar.CollectAdditionalNeighbors fullName: MLEM.Pathfinding.AStar.CollectAdditionalNeighbors nameWithType.vb: AStar(Of T).CollectAdditionalNeighbors fullName.vb: MLEM.Pathfinding.AStar(Of T).CollectAdditionalNeighbors name.vb: AStar(Of T).CollectAdditionalNeighbors spec.csharp: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: < - name: T - name: '>' - name: . - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html spec.vb: - uid: MLEM.Pathfinding.AStar`1 name: AStar href: MLEM.Pathfinding.AStar-1.html - name: ( - name: Of - name: " " - name: T - name: ) - name: . - uid: MLEM.Pathfinding.AStar`1.CollectAdditionalNeighbors name: CollectAdditionalNeighbors href: MLEM.Pathfinding.AStar-1.CollectAdditionalNeighbors.html - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0) href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ name: GetHeuristicDistance(Point, Point) nameWithType: AStar.GetHeuristicDistance(Point, Point) fullName: MLEM.Pathfinding.AStar.GetHeuristicDistance(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point) nameWithType.vb: AStar(Of Point).GetHeuristicDistance(Point, Point) fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).GetHeuristicDistance(Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Point) spec.csharp: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) name: GetHeuristicDistance href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.GetHeuristicDistance(Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Point) name: GetHeuristicDistance href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - uid: MLEM.Pathfinding.AStar2.GetHeuristicDistance* commentId: Overload:MLEM.Pathfinding.AStar2.GetHeuristicDistance href: MLEM.Pathfinding.AStar2.html#MLEM_Pathfinding_AStar2_GetHeuristicDistance_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Point_ name: GetHeuristicDistance nameWithType: AStar2.GetHeuristicDistance fullName: MLEM.Pathfinding.AStar2.GetHeuristicDistance - uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0) commentId: M:MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0) href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ name: GetHeuristicDistance(T, T) nameWithType: AStar.GetHeuristicDistance(T, T) fullName: MLEM.Pathfinding.AStar.GetHeuristicDistance(T, T) nameWithType.vb: AStar(Of T).GetHeuristicDistance(T, T) fullName.vb: MLEM.Pathfinding.AStar(Of T).GetHeuristicDistance(T, T) spec.csharp: - uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0) name: GetHeuristicDistance href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ - name: ( - name: T - name: ',' - name: " " - name: T - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar`1.GetHeuristicDistance(`0,`0) name: GetHeuristicDistance href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_GetHeuristicDistance__0__0_ - name: ( - name: T - name: ',' - name: " " - name: T - name: ) - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) commentId: M:MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) parent: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point} definition: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0}) href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ name: CollectNeighbors(Point, ISet) nameWithType: AStar.CollectNeighbors(Point, ISet) fullName: MLEM.Pathfinding.AStar.CollectNeighbors(Microsoft.Xna.Framework.Point, System.Collections.Generic.ISet) nameWithType.vb: AStar(Of Point).CollectNeighbors(Point, ISet(Of Point)) fullName.vb: MLEM.Pathfinding.AStar(Of Microsoft.Xna.Framework.Point).CollectNeighbors(Microsoft.Xna.Framework.Point, System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Point)) name.vb: CollectNeighbors(Point, ISet(Of Point)) spec.csharp: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) name: CollectNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar{Microsoft.Xna.Framework.Point}.CollectNeighbors(Microsoft.Xna.Framework.Point,System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point}) name: CollectNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ - name: ( - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ',' - name: " " - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - name: ) - uid: MLEM.Pathfinding.AStar2.CollectNeighbors* commentId: Overload:MLEM.Pathfinding.AStar2.CollectNeighbors href: MLEM.Pathfinding.AStar2.html#MLEM_Pathfinding_AStar2_CollectNeighbors_Microsoft_Xna_Framework_Point_System_Collections_Generic_ISet_Microsoft_Xna_Framework_Point__ name: CollectNeighbors nameWithType: AStar2.CollectNeighbors fullName: MLEM.Pathfinding.AStar2.CollectNeighbors - uid: System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point} commentId: T:System.Collections.Generic.ISet{Microsoft.Xna.Framework.Point} parent: System.Collections.Generic definition: System.Collections.Generic.ISet`1 href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 name: ISet nameWithType: ISet fullName: System.Collections.Generic.ISet nameWithType.vb: ISet(Of Point) fullName.vb: System.Collections.Generic.ISet(Of Microsoft.Xna.Framework.Point) name.vb: ISet(Of Point) spec.csharp: - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: < - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: '>' spec.vb: - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: ( - name: Of - name: " " - uid: Microsoft.Xna.Framework.Point name: Point isExternal: true - name: ) - uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0}) commentId: M:MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0}) isExternal: true href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ name: CollectNeighbors(T, ISet) nameWithType: AStar.CollectNeighbors(T, ISet) fullName: MLEM.Pathfinding.AStar.CollectNeighbors(T, System.Collections.Generic.ISet) nameWithType.vb: AStar(Of T).CollectNeighbors(T, ISet(Of T)) fullName.vb: MLEM.Pathfinding.AStar(Of T).CollectNeighbors(T, System.Collections.Generic.ISet(Of T)) name.vb: CollectNeighbors(T, ISet(Of T)) spec.csharp: - uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0}) name: CollectNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ - name: ( - name: T - name: ',' - name: " " - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: < - name: T - name: '>' - name: ) spec.vb: - uid: MLEM.Pathfinding.AStar`1.CollectNeighbors(`0,System.Collections.Generic.ISet{`0}) name: CollectNeighbors href: MLEM.Pathfinding.AStar-1.html#MLEM_Pathfinding_AStar_1_CollectNeighbors__0_System_Collections_Generic_ISet__0__ - name: ( - name: T - name: ',' - name: " " - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: ( - name: Of - name: " " - name: T - name: ) - name: ) - uid: System.Collections.Generic.ISet`1 commentId: T:System.Collections.Generic.ISet`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 name: ISet nameWithType: ISet fullName: System.Collections.Generic.ISet nameWithType.vb: ISet(Of T) fullName.vb: System.Collections.Generic.ISet(Of T) name.vb: ISet(Of T) spec.csharp: - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Collections.Generic.ISet`1 name: ISet isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic.iset-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: System.Collections.Generic commentId: N:System.Collections.Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System.Collections.Generic nameWithType: System.Collections.Generic fullName: System.Collections.Generic spec.csharp: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic spec.vb: - uid: System name: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system - name: . - uid: System.Collections name: Collections isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections - name: . - uid: System.Collections.Generic name: Generic isExternal: true href: https://learn.microsoft.com/dotnet/api/system.collections.generic