aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/gui/RecipeContainer.java
blob: f8605a45c5cf3a8ccef3864ff11f64b5e538bb7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package me.shedaniel.gui;


import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.inventory.Container;

public class RecipeContainer extends Container {
    
    @Override
    public boolean canInteractWith(EntityPlayer entityPlayer) {
        return true;
    }
}