advent_of_code_2021/day_15/vendor/blackscorp/astar/src/HeuristicInterface.php

7 lines
120 B
PHP

<?php
namespace BlackScorp\Astar;
interface HeuristicInterface
{
public function compare(Node $node, Node $goal);
}