(int recipe)
| 626 | } |
| 627 | |
| 628 | @Override |
| 629 | public void drawBackground(int recipe) { |
| 630 | GL11.glColor4f(1, 1, 1, 1); |
| 631 | GuiDraw.changeTexture(RES_PATH_GUI+"machines/NEI.png"); |
| 632 | GuiDraw.drawTexturedModalRect(-5, -16, 0, 0, 176, 166); |
| 633 | GuiDraw.changeTexture(getGuiTexture()); |
| 634 | GuiDraw.drawTexturedModalRect(-5, -8, 0, 3, 176, 79); |
| 635 | } |
| 636 | |
| 637 | public static void drawText(int aX, int aY, String aString, int aColor) { |
| 638 | Minecraft.getMinecraft().fontRenderer.drawString(aString, aX, aY, aColor); |
nothing calls this directly
no test coverage detected