SmithingRecipeInput
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.SmithingRecipeInput;
Implements
SmithingRecipeInput
implements the following interfaces:
Members
getItem(slot as int) as IItemStack
mySmithingRecipeInput.getItem(myInt);
Parameters:
slot: int
Type: int
Return Type:
IItemStack
Getter
// SmithingRecipeInput.isEmpty as boolmySmithingRecipeInput.isEmpty
Return Type:
bool
static of(template as IItemStack, base as IItemStack, addition as IItemStack) as SmithingRecipeInput
// SmithingRecipeInput.of(template as IItemStack, base as IItemStack, addition as IItemStack) as SmithingRecipeInput;SmithingRecipeInput.of(myIItemStack, myIItemStack, myIItemStack);
Parameters:
template: IItemStack
Type: IItemStack
base: IItemStack
Type: IItemStack
addition: IItemStack
Type: IItemStack
Return Type:
SmithingRecipeInput
Getter
// SmithingRecipeInput.size as intmySmithingRecipeInput.size
Return Type:
int