Package powercrystals.minefactoryreloaded.core

Source Code of powercrystals.minefactoryreloaded.core.RemoteInventoryCrafting

package powercrystals.minefactoryreloaded.core;

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

public class RemoteInventoryCrafting extends InventoryCrafting
{
  public RemoteInventoryCrafting()
  {
    super(new Container()
    {
      @Override
      public boolean canInteractWith(EntityPlayer var1)
      {
        return false;
      }
    },
    3, 3);
  }
}
TOP

Related Classes of powercrystals.minefactoryreloaded.core.RemoteInventoryCrafting

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.