package xyz.valnet.hadean.pathfinding;
public interface IPathfinder {
public Path getPath(int x1, int y1, int x2, int y2);
}