Update PathFinderInterface.php

This commit is contained in:
Dennis Eichhorn 2019-08-20 17:31:08 +02:00 committed by GitHub
parent 309b661fab
commit ce0a98c7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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