Package extracells.container

Examples of extracells.container.ContainerTerminalFluid


  private List<AbstractFluidWidget> fluidWidgets = new ArrayList<AbstractFluidWidget>();
  private ResourceLocation guiTexture = new ResourceLocation("extracells", "textures/gui/terminalfluid.png");

  public GuiTerminalFluid(TileEntityTerminalFluid _tileEntity, EntityPlayer player)
  {
    super(new ContainerTerminalFluid(player, _tileEntity.getInventory()));
    if (_tileEntity != null)
    {
      tileEntity = _tileEntity;
      oldSelected = _tileEntity.getCurrentFluid();
      oldFluids = _tileEntity.getFluids();
View Full Code Here

TOP

Related Classes of extracells.container.ContainerTerminalFluid

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.