blob: aada00b8a9665a0368137de9d04bdbc28f1ca76f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.api;
import net.minecraft.client.gui.DrawableHelper;
public abstract class Renderer extends DrawableHelper implements Renderable {
/**
* Gets the current blit offset
*
* @return the blit offset
*/
public int getBlitOffset() {
return this.blitOffset;
}
/**
* Sets the current blit offset
*
* @param offset the new blit offset
*/
public void setBlitOffset(int offset) {
this.blitOffset = offset;
}
}
|