Package baritone.api.cache
Interface IWaypointCollection
public interface IWaypointCollection
- Since:
- 9/24/2018
- Author:
- Brady
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddWaypoint(IWaypoint waypoint) Adds a waypoint to this collectionGets all of the waypoints in this collection, regardless of the tag.getByTag(IWaypoint.Tag tag) Gets all of the waypoints that have the specified tagGets the most recently created waypoint by the specifiedIWaypoint.TagvoidremoveWaypoint(IWaypoint waypoint) Removes a waypoint from this collection
-
Method Details
-
addWaypoint
Adds a waypoint to this collection- Parameters:
waypoint- The waypoint
-
removeWaypoint
Removes a waypoint from this collection- Parameters:
waypoint- The waypoint
-
getMostRecentByTag
Gets the most recently created waypoint by the specifiedIWaypoint.Tag- Parameters:
tag- The tag- Returns:
- The most recently created waypoint with the specified tag
-
getByTag
Gets all of the waypoints that have the specified tag- Parameters:
tag- The tag- Returns:
- All of the waypoints with the specified tag
- See Also:
-
getAllWaypoints
Gets all of the waypoints in this collection, regardless of the tag.- Returns:
- All of the waypoints in this collection
- See Also:
-