aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util/GT_IBoxableWrapper.java
blob: dadbe575184f01531cd192f3bbe3b475f4760df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package gregtech.api.util;

import ic2.api.item.IBoxable;
import net.minecraft.item.ItemStack;

public class GT_IBoxableWrapper implements IBoxable {
    @Override
    public boolean canBeStoredInToolbox(ItemStack itemstack) {
        return true;
    }
}