Create/src/main/java/com/simibubi/create/compat/jei/EmptyBackground.java
simibubi 9bd07d4ed0 JEI cleanup
- JEI screens render individual widgets instead of the full white background. Adresses #8
2019-12-13 20:52:42 +01:00

29 lines
458 B
Java

package com.simibubi.create.compat.jei;
import mezz.jei.api.gui.drawable.IDrawable;
public class EmptyBackground implements IDrawable {
private int width;
private int height;
public EmptyBackground(int width, int height) {
this.width = width;
this.height = height;
}
@Override
public int getWidth() {
return width;
}
@Override
public int getHeight() {
return height;
}
@Override
public void draw(int xOffset, int yOffset) {
}
}