phpOMS/Algorithm/PathFinding/PathFinderInterface.php

10 lines
213 B
PHP

interface PathFinderInterface {
public static function findPath(
int $startX, int $startY,
int $endX, int $endY,
Grid $grid,
int $heuristic, int $movement,
) : array;
}