aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java
diff options
context:
space:
mode:
authorshedaniel <daniel@shedaniel.me>2020-02-26 00:35:20 +0800
committershedaniel <daniel@shedaniel.me>2020-02-26 00:35:20 +0800
commit69a855f33483c3a5273f6f337c95fb51aad5d2b4 (patch)
tree8cec3c7967d95ec386bcf4aabe59b323b23f1103 /src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java
parent6a943e21ed3c2610ade20c3ba0646da87db65501 (diff)
downloadRoughlyEnoughItems-69a855f33483c3a5273f6f337c95fb51aad5d2b4.tar.gz
RoughlyEnoughItems-69a855f33483c3a5273f6f337c95fb51aad5d2b4.tar.bz2
RoughlyEnoughItems-69a855f33483c3a5273f6f337c95fb51aad5d2b4.zip
improved notice filtering
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java')
-rw-r--r--src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java b/src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java
new file mode 100644
index 000000000..3101df21d
--- /dev/null
+++ b/src/main/java/me/shedaniel/rei/gui/StackToNoticeScreen.java
@@ -0,0 +1,13 @@
+package me.shedaniel.rei.gui;
+
+import me.shedaniel.rei.api.EntryStack;
+import org.jetbrains.annotations.ApiStatus;
+
+@ApiStatus.Internal
+public interface StackToNoticeScreen {
+ @ApiStatus.Internal
+ void addIngredientStackToNotice(EntryStack stack);
+
+ @ApiStatus.Internal
+ void addResultStackToNotice(EntryStack stack);
+} \ No newline at end of file