Files
esengine/source/src/AI/Pathfinding/AStar/IAstarGraph.ts

5 lines
136 B
TypeScript
Raw Normal View History

2020-06-09 19:45:09 +08:00
interface IAstarGraph<T> {
getNeighbors(node: T): Array<T>;
cost(from: T, to: T): number;
heuristic(node: T, goal: T);
}