├── .gitignore ├── KPathfinder.sln ├── KPathfinder ├── Algorithms │ ├── AStar.cs │ └── KPathfinder.cs ├── KPathfinder.csproj ├── KTest.cs ├── Map │ ├── IMap.cs │ └── Map.cs ├── Objects │ ├── Node.cs │ └── Position.cs └── Utils │ ├── Heuristics.cs │ ├── MiniHeap.cs │ └── PathfinderHelper.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /KPathfinder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder.sln -------------------------------------------------------------------------------- /KPathfinder/Algorithms/AStar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Algorithms/AStar.cs -------------------------------------------------------------------------------- /KPathfinder/Algorithms/KPathfinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Algorithms/KPathfinder.cs -------------------------------------------------------------------------------- /KPathfinder/KPathfinder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/KPathfinder.csproj -------------------------------------------------------------------------------- /KPathfinder/KTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/KTest.cs -------------------------------------------------------------------------------- /KPathfinder/Map/IMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Map/IMap.cs -------------------------------------------------------------------------------- /KPathfinder/Map/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Map/Map.cs -------------------------------------------------------------------------------- /KPathfinder/Objects/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Objects/Node.cs -------------------------------------------------------------------------------- /KPathfinder/Objects/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Objects/Position.cs -------------------------------------------------------------------------------- /KPathfinder/Utils/Heuristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Utils/Heuristics.cs -------------------------------------------------------------------------------- /KPathfinder/Utils/MiniHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Utils/MiniHeap.cs -------------------------------------------------------------------------------- /KPathfinder/Utils/PathfinderHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/KPathfinder/Utils/PathfinderHelper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntoineCrb/KPathFinder/HEAD/README.md --------------------------------------------------------------------------------