Class PathResult
- java.lang.Object
-
- com.apogames.kitchenchef.game.pathfinding.PathResult
-
public class PathResult extends java.lang.Object
The type Path result.
-
-
Constructor Summary
Constructors Constructor Description PathResult(Vector movement)
Instantiates a new Path result.PathResult(Vector movement, java.util.List<PathPoint> movementList)
Instantiates a new Path result.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getCost()
Gets cost.Vector
getMovement()
Gets movement.java.util.List<PathPoint>
getMovementList()
Gets movement list.
-
-
-
Constructor Detail
-
PathResult
public PathResult(Vector movement)
Instantiates a new Path result.- Parameters:
movement
- the movement
-
-