Make PathCost interface public (#5109)

This commit is contained in:
Drullkus
2021-04-15 06:27:02 -07:00
committed by GitHub
parent d41362a71d
commit f005b83ed3

View File

@@ -465,7 +465,7 @@ public class Pathfinder implements Runnable{
protected abstract void getPositions(IntSeq out);
}
interface PathCost{
public interface PathCost{
int getCost(Team traversing, int tile);
}