Refactor pathfinding => pathing

This commit is contained in:
Howard Stark
2018-08-01 23:27:41 -04:00
parent e4fa043c8c
commit 37be3908c7
14 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +0,0 @@
package baritone.bot.pathfinding.actions;
public enum ActionTypes {
}

View File

@@ -1,4 +1,4 @@
package baritone.bot.pathfinding;
package baritone.bot.pathing;
public class State {

View File

@@ -1,4 +1,4 @@
package baritone.bot.pathfinding.actions;
package baritone.bot.pathing.actions;
public final class ActionCosts {
private ActionCosts() {}

View File

@@ -0,0 +1,5 @@
package baritone.bot.pathing.actions;
public enum ActionTypes {
}

View File

@@ -8,7 +8,7 @@ package baritone.bot.goals;
import net.minecraft.util.math.BlockPos;
/**
* An abstract Goal for pathfinding, can be anything from a specific block to just a Y coordinate.
* An abstract Goal for pathing, can be anything from a specific block to just a Y coordinate.
* @author leijurv
*/
public interface Goal {