Package appeng.parts

Examples of appeng.parts.ICableBusContainer


  }

  private ICableBusContainer cb(IBlockAccess w, int x, int y, int z)
  {
    TileEntity te = w.getTileEntity( x, y, z );
    ICableBusContainer out = null;

    if ( te instanceof TileCableBus )
      out = ((TileCableBus) te).cb;

    else if ( AppEng.instance.isIntegrationEnabled( IntegrationType.FMP ) )
View Full Code Here

TOP

Related Classes of appeng.parts.ICableBusContainer

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.