UTests pass with Pathfinder2D

This commit is contained in:
2021-02-28 07:52:28 -06:00
parent 715b328ef5
commit f55716d2ec
24 changed files with 687 additions and 294 deletions

19
PathFinding/Enums.cs Normal file
View File

@@ -0,0 +1,19 @@
namespace PathFinding
{
public enum HaltCondition
{
/// <summary>
/// Do not stop until you reach the collection boundary.
/// </summary>
None,
/// <summary>
/// Halt after encountering a non-null element.
/// </summary>
AfterCollide
}
}
public enum Distance
{
OneStep,
MultiStep
}