aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/rei/gui/widget/ItemSlotWidget.java
blob: 60b83b61178b99c4dc148d43df35341a3be6a926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * Roughly Enough Items by Danielshe.
 * Licensed under the MIT License.
 */

package me.shedaniel.rei.gui.widget;

import me.shedaniel.rei.api.Renderer;
import net.minecraft.item.ItemStack;

import java.util.Collection;
import java.util.List;

/**
 * @deprecated Use {@link SlotWidget}
 */
@Deprecated
public class ItemSlotWidget extends SlotWidget {
    public ItemSlotWidget(int x, int y, ItemStack itemStack, boolean drawBackground, boolean showToolTips) {
        super(x, y, itemStack, drawBackground, showToolTips);
    }
    
    public ItemSlotWidget(int x, int y, Collection<ItemStack> itemList, boolean drawBackground, boolean showToolTips) {
        super(x, y, itemList, drawBackground, showToolTips);
    }
    
    public ItemSlotWidget(int x, int y, List<Renderer> renderers, boolean drawBackground, boolean showToolTips) {
        super(x, y, renderers, drawBackground, showToolTips);
    }
    
    public ItemSlotWidget(int x, int y, List<ItemStack> itemList, boolean drawBackground, boolean showToolTips, boolean clickToMoreRecipes) {
        super(x, y, itemList, drawBackground, showToolTips, clickToMoreRecipes);
    }
}