From 904586629d3b9483df7b4ee5b35943db562462bf Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 27 Jan 2022 10:28:06 +0800 Subject: Rework crafting getInputEntries --- .../api/common/display/SimpleGridMenuDisplay.java | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'api') diff --git a/api/src/main/java/me/shedaniel/rei/api/common/display/SimpleGridMenuDisplay.java b/api/src/main/java/me/shedaniel/rei/api/common/display/SimpleGridMenuDisplay.java index 0c0fd7f5f..f19cc22a9 100644 --- a/api/src/main/java/me/shedaniel/rei/api/common/display/SimpleGridMenuDisplay.java +++ b/api/src/main/java/me/shedaniel/rei/api/common/display/SimpleGridMenuDisplay.java @@ -30,7 +30,35 @@ package me.shedaniel.rei.api.common.display; * @see me.shedaniel.rei.api.common.transfer.info.simple.SimpleGridMenuInfo */ public interface SimpleGridMenuDisplay extends Display { + /** + * Returns the functional width of the grid. + * + * @return the functional width of the grid + */ int getWidth(); + /** + * Returns the functional height of the grid. + * + * @return the functional height of the grid + */ int getHeight(); + + /** + * Returns the input width of the input entries. + * + * @return the input width of the input entries + */ + default int getInputWidth() { + return getWidth(); + } + + /** + * Returns the input height of the input entries. + * + * @return the input height of the input entries + */ + default int getInputHeight() { + return getHeight(); + } } -- cgit