gitextract_a16lqtoo/ ├── .gitignore ├── EpPathFinding.cs/ │ ├── EpPathFinding.cs/ │ │ ├── EpPathFinding.cs.csproj │ │ ├── PathFinder/ │ │ │ ├── AStarFinder.cs │ │ │ ├── DiagonalMovement.cs │ │ │ ├── Grid/ │ │ │ │ ├── BaseGrid.cs │ │ │ │ ├── DynamicGrid.cs │ │ │ │ ├── DynamicGridWPool.cs │ │ │ │ ├── PartialGridWPool.cs │ │ │ │ └── StaticGrid.cs │ │ │ ├── GridPos.cs │ │ │ ├── GridRect.cs │ │ │ ├── Heuristic.cs │ │ │ ├── JumpPointFinder.cs │ │ │ ├── NodePool.cs │ │ │ ├── ParamBase.cs │ │ │ └── Util.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── EpPathFinding.cs.nupkg │ └── EpPathFinding.cs.sln ├── EpPathFindingDemo/ │ ├── EpPathFindingDemo.csproj │ ├── EpPathFindingDemo.sln │ ├── General/ │ │ └── SingletonHolder.cs │ ├── GridBox.cs │ ├── GridLine.cs │ ├── LICENSE │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ResultBox.cs │ ├── SearchGridForm.Designer.cs │ ├── SearchGridForm.cs │ └── SearchGridForm.resx ├── README.md └── _config.yml