Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions api/src/main/java/eu/darkbot/api/managers/AssemblyAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

/**
Expand Down Expand Up @@ -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();
}

}