aboutsummaryrefslogtreecommitdiff
path: root/api/src/main/java/me/shedaniel/rei/impl
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2022-06-26 21:45:36 +0800
committershedaniel <daniel@shedaniel.me>2022-06-28 03:21:12 +0800
commit74e4781b57b2f6e0aa581bce0f68ae2ab0de363b (patch)
tree16774826e4969952f1af56426f80b4032e9af1ac /api/src/main/java/me/shedaniel/rei/impl
parent87ccf96bf8a7705da7844dce9b94364b2e3d1b25 (diff)
downloadRoughlyEnoughItems-74e4781b57b2f6e0aa581bce0f68ae2ab0de363b.tar.gz
RoughlyEnoughItems-74e4781b57b2f6e0aa581bce0f68ae2ab0de363b.tar.bz2
RoughlyEnoughItems-74e4781b57b2f6e0aa581bce0f68ae2ab0de363b.zip
Primitive tags category implementation
Diffstat (limited to 'api/src/main/java/me/shedaniel/rei/impl')
-rw-r--r--api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java b/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java
index f68d28e95..36456399b 100644
--- a/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java
+++ b/api/src/main/java/me/shedaniel/rei/impl/ClientInternals.java
@@ -201,8 +201,10 @@ public final class ClientInternals {
Widget concatWidgets(List<Widget> widgets);
- Widget noOp();
+ WidgetWithBounds noOp();
- Widget wrapOverflow(Rectangle bounds, WidgetWithBounds widget);
+ WidgetWithBounds wrapOverflow(Rectangle bounds, WidgetWithBounds widget);
+
+ WidgetWithBounds wrapPadded(int padLeft, int padRight, int padTop, int padBottom, WidgetWithBounds widget);
}
}