From f005b83ed3772a453c21f4a81ccc94ba7823ef98 Mon Sep 17 00:00:00 2001 From: Drullkus <5010174+Drullkus@users.noreply.github.com> Date: Thu, 15 Apr 2021 06:27:02 -0700 Subject: [PATCH] Make PathCost interface public (#5109) --- core/src/mindustry/ai/Pathfinder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/ai/Pathfinder.java b/core/src/mindustry/ai/Pathfinder.java index 6796a7156b..509ca0c03d 100644 --- a/core/src/mindustry/ai/Pathfinder.java +++ b/core/src/mindustry/ai/Pathfinder.java @@ -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); }