Package appeng.container.implementations

Examples of appeng.container.implementations.ContainerQuartzKnife


{

  GuiTextField name;

  public GuiQuartzKnife(InventoryPlayer inventoryPlayer, QuartzKnifeObj te) {
    super( new ContainerQuartzKnife( inventoryPlayer, te ) );
    this.ySize = 184;
  }
View Full Code Here


      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.ContainerQuartzKnife

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.