Package appeng.container.implementations

Examples of appeng.container.implementations.ContainerLevelEmitter


  GuiImgButton levelMode;
  GuiImgButton craftingMode;

  public GuiLevelEmitter(InventoryPlayer inventoryPlayer, PartLevelEmitter te) {
    super( new ContainerLevelEmitter( inventoryPlayer, te ) );
  }
View Full Code Here


      ContainerPriority pc = (ContainerPriority) c;
      pc.setPriority( Integer.parseInt( Value ), player );
    }
    else if ( Name.equals( "LevelEmitter.Value" ) && c instanceof ContainerLevelEmitter )
    {
      ContainerLevelEmitter lvc = (ContainerLevelEmitter) c;
      lvc.setLevel( Long.parseLong( Value ), player );
    }
    else if ( Name.startsWith( "PatternTerminal." ) && c instanceof ContainerPatternTerm )
    {
      ContainerPatternTerm cpt = (ContainerPatternTerm) c;
      if ( Name.equals( "PatternTerminal.CraftMode" ) )
View Full Code Here

TOP

Related Classes of appeng.container.implementations.ContainerLevelEmitter

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.