mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
10 lines
213 B
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;
|
|
}
|