diff --git a/api/src/main/java/eu/darkbot/api/managers/AssemblyAPI.java b/api/src/main/java/eu/darkbot/api/managers/AssemblyAPI.java index 06bd934..42df45d 100644 --- a/api/src/main/java/eu/darkbot/api/managers/AssemblyAPI.java +++ b/api/src/main/java/eu/darkbot/api/managers/AssemblyAPI.java @@ -66,6 +66,21 @@ interface Recipe { * @return if the recipe is collectable */ boolean isCollectable(); + + /** + * @return the visibility data of the recipe + */ + String getVisibility(); + + /** + * @return the time left to complete recipe craft + */ + int getCraftTimeLeft(); + + /** + * @return the time required to craft the recipe + */ + int getCraftTimeRequired(); } /** @@ -106,6 +121,16 @@ interface Filter { * @return if the filter is applied */ boolean isChecked(); + + /** + * @return the x offset location + */ + int getX(); + + /** + * @return the y offset location + */ + int getY(); } }