Interface InventoryPixelmonBase
- All Known Implementing Classes:
- CreativeInventoryExtendedScreen,- DayCareScreen,- InventoryPixelmonExtendedScreen
public interface InventoryPixelmonBase
Used to outsource method calls to the two different Pixelmon inventories.
- 
Method SummaryModifier and TypeMethodDescriptionList<net.minecraft.client.gui.components.Renderable>Gets the list of buttons on the GUI.intGets the x coordinate of the left side of the GUI.floatGets the z coordinate of the inventory.voidoffsetGUILeft(int offset) Adds an amount to the x coordinate of the left side of the GUI.voidvoidrender(net.minecraft.client.gui.GuiGraphics graphics, int mouseX, int mouseY, float partialTicks) Calls the superclass's drawScreen().
- 
Method Details- 
rendervoid render(net.minecraft.client.gui.GuiGraphics graphics, int mouseX, int mouseY, float partialTicks) Calls the superclass's drawScreen().- Parameters:
- mouseX- The x coordinate of the mouse.
- mouseY- The y coordinate of the mouse.
- partialTicks- The current amount of partial ticks.
 
- 
getZLevelfloat getZLevel()Gets the z coordinate of the inventory.
- 
getGUILeftint getGUILeft()Gets the x coordinate of the left side of the GUI.- Returns:
- The x coordinate of the left side of the GUI.
 
- 
offsetGUILeftvoid offsetGUILeft(int offset) Adds an amount to the x coordinate of the left side of the GUI.- Parameters:
- offset- The amount to add to the x coordinate of the left side of the GUI.
 
- 
getButtonListList<net.minecraft.client.gui.components.Renderable> getButtonList()Gets the list of buttons on the GUI.- Returns:
- The list of buttons on the GUI.
 
- 
refreshSearchResultsvoid refreshSearchResults()
 
-