diff options
| author | Unknown <shekwancheung0528@gmail.com> | 2019-06-06 16:09:48 +0800 |
|---|---|---|
| committer | Unknown <shekwancheung0528@gmail.com> | 2019-06-06 16:09:48 +0800 |
| commit | 94e6085d2d49e7fe38871c9548774c4e50a2f422 (patch) | |
| tree | 8de1c84b88a61ecd79810ede9adcd1a5727ca852 /src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java | |
| parent | 9755812e75e7fa357dd0ae55bb36b9e3a7d86822 (diff) | |
| download | RoughlyEnoughItems-94e6085d2d49e7fe38871c9548774c4e50a2f422.tar.gz RoughlyEnoughItems-94e6085d2d49e7fe38871c9548774c4e50a2f422.tar.bz2 RoughlyEnoughItems-94e6085d2d49e7fe38871c9548774c4e50a2f422.zip | |
this is still not working
Diffstat (limited to 'src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java')
| -rw-r--r-- | src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java b/src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java index 41f9e042a..2ae427e19 100644 --- a/src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java +++ b/src/main/java/me/shedaniel/rei/gui/widget/RecipeBaseWidget.java @@ -28,6 +28,14 @@ public class RecipeBaseWidget extends HighlightableWidget { throw new IllegalArgumentException("Base too small, at least 8x8!"); } + public int getBlitOffset() { + return this.blitOffset; + } + + public void setBlitOffset(int offset) { + this.blitOffset = offset; + } + @Override public Rectangle getBounds() { return bounds; |
