blob: 96ef0aef38629186b53e764393a6262c6eec2d24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright (c) 2018, 2019, 2020 shedaniel
* Licensed under the MIT License (the "License").
*/
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);
}
|