aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-01-02 14:31:16 +0800
committershedaniel <daniel@shedaniel.me>2020-01-02 14:31:16 +0800
commit5e2eccadbd91171c01cdb209d1338bcfb7786b1c (patch)
tree6c7387de5baea8b335e8abe58651018f77ad2d41 /src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java
parente8714fe8fc1dcaec7ad299c63e2b657870c8fb40 (diff)
downloadRoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.tar.gz
RoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.tar.bz2
RoughlyEnoughItems-5e2eccadbd91171c01cdb209d1338bcfb7786b1c.zip
3.3
Fix #58 Close #134 Close #158 Fix #227
Diffstat (limited to 'src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java')
-rw-r--r--src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java b/src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java
index b3af06c01..8ec5f3527 100644
--- a/src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java
+++ b/src/main/java/me/shedaniel/rei/api/ButtonAreaSupplier.java
@@ -8,7 +8,7 @@ package me.shedaniel.rei.api;
import me.shedaniel.math.api.Rectangle;
public interface ButtonAreaSupplier {
-
+
/**
* Declares the button bounds
*
@@ -16,7 +16,7 @@ public interface ButtonAreaSupplier {
* @return the bounds of the button
*/
Rectangle get(Rectangle bounds);
-
+
/**
* Declares the button text
*
@@ -25,5 +25,5 @@ public interface ButtonAreaSupplier {
default String getButtonText() {
return "+";
}
-
+
}