mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-12-17 05:33:41 +01:00
33 lines
709 B
Java
33 lines
709 B
Java
package com.simibubi.create.compat.jei;
|
|
|
|
import com.simibubi.create.foundation.gui.AllGuiTextures;
|
|
|
|
import mezz.jei.api.gui.drawable.IDrawable;
|
|
import net.minecraft.client.gui.AbstractGui;
|
|
|
|
public class ScreenResourceWrapper implements IDrawable {
|
|
|
|
private AllGuiTextures resource;
|
|
|
|
public ScreenResourceWrapper(AllGuiTextures resource) {
|
|
this.resource = resource;
|
|
}
|
|
|
|
@Override
|
|
public int getWidth() {
|
|
return resource.width;
|
|
}
|
|
|
|
@Override
|
|
public int getHeight() {
|
|
return resource.height;
|
|
}
|
|
|
|
@Override
|
|
public void draw(int xOffset, int yOffset) {
|
|
resource.bind();
|
|
AbstractGui.blit(xOffset, yOffset, 0, resource.startX, resource.startY, resource.width, resource.height, 256,
|
|
256);
|
|
}
|
|
|
|
}
|