Package appeng.container.implementations

Examples of appeng.container.implementations.ContainerCraftingCPU


    this.xSize = 238;
    myScrollBar = new GuiScrollbar();
  }

  public GuiCraftingCPU(InventoryPlayer inventoryPlayer, Object te) {
    this( new ContainerCraftingCPU( inventoryPlayer, te ) );
  }
View Full Code Here


      ContainerCraftConfirm qk = (ContainerCraftConfirm) c;
      qk.startJob();
    }
    else if ( Name.equals( "TileCrafting.Cancel" ) && c instanceof ContainerCraftingCPU )
    {
      ContainerCraftingCPU qk = (ContainerCraftingCPU) c;
      qk.cancelCrafting();
    }
    else if ( Name.equals( "QuartzKnife.Name" ) && c instanceof ContainerQuartzKnife )
    {
      ContainerQuartzKnife qk = (ContainerQuartzKnife) c;
      qk.setName( Value );
    }
    else if ( Name.equals( "TileSecurity.ToggleOption" ) && c instanceof ContainerSecurity )
    {
      ContainerSecurity sc = (ContainerSecurity) c;
      sc.toggleSetting( Value, player );
View Full Code Here

TOP

Related Classes of appeng.container.implementations.ContainerCraftingCPU

Copyright © 2018 www.massapicom. 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.