SingleRecipeInput
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.recipe.input.type.SingleRecipeInput;
Implements
SingleRecipeInput
implements the following interfaces:
Members
getItem(slot as int) as IItemStack
mySingleRecipeInput.getItem(myInt);
Parameters:
slot: int
Type: int
Return Type:
IItemStack
Getter
// SingleRecipeInput.isEmpty as boolmySingleRecipeInput.isEmpty
Return Type:
bool
Getter
// SingleRecipeInput.item as IItemStackmySingleRecipeInput.item
Return Type:
IItemStack
static of(item as IItemStack) as SingleRecipeInput
SingleRecipeInput.of(myIItemStack);
Parameters:
item: IItemStack
Type: IItemStack
Return Type:
SingleRecipeInput
Getter
// SingleRecipeInput.size as intmySingleRecipeInput.size
Return Type:
int