public abstract class BlankRecipeWrapper extends java.lang.Object implements IRecipeWrapper
| Constructor and Description |
|---|
BlankRecipeWrapper() |
| Modifier and Type | Method and Description |
|---|---|
void |
drawAnimations(net.minecraft.client.Minecraft minecraft,
int recipeWidth,
int recipeHeight)
Draw animations involving the recipe.
|
void |
drawInfo(net.minecraft.client.Minecraft minecraft,
int recipeWidth,
int recipeHeight)
Draw additional info about the recipe.
|
java.util.List<net.minecraftforge.fluids.FluidStack> |
getFluidInputs()
Return a list of recipe fluid inputs.
|
java.util.List<net.minecraftforge.fluids.FluidStack> |
getFluidOutputs()
Return a list of recipe fluid outputs.
|
java.util.List |
getInputs()
Return a list of recipe inputs.
|
java.util.List |
getOutputs()
Return a list of recipe inputs.
|
java.util.List<java.lang.String> |
getTooltipStrings(int mouseX,
int mouseY)
Get the tooltip for whatever's under the mouse.
|
public java.util.List getInputs()
IRecipeWrappergetInputs in interface IRecipeWrapperpublic java.util.List getOutputs()
IRecipeWrappergetOutputs in interface IRecipeWrapperpublic java.util.List<net.minecraftforge.fluids.FluidStack> getFluidInputs()
IRecipeWrappergetFluidInputs in interface IRecipeWrapperpublic java.util.List<net.minecraftforge.fluids.FluidStack> getFluidOutputs()
IRecipeWrappergetFluidOutputs in interface IRecipeWrapperpublic void drawInfo(@Nonnull
net.minecraft.client.Minecraft minecraft,
int recipeWidth,
int recipeHeight)
IRecipeWrapperdrawInfo in interface IRecipeWrapperpublic void drawAnimations(@Nonnull
net.minecraft.client.Minecraft minecraft,
int recipeWidth,
int recipeHeight)
IRecipeWrapperdrawAnimations in interface IRecipeWrapper@Nullable
public java.util.List<java.lang.String> getTooltipStrings(int mouseX,
int mouseY)
IRecipeWrappergetTooltipStrings in interface IRecipeWrappermouseX - the X position of the mouse, relative to the recipe.mouseY - the Y position of the mouse, relative to the recipe.