Package crazypants.enderio.conduit

Examples of crazypants.enderio.conduit.IConduitBundle


  private Mimic getMimic(IBlockAccess ba, int x, int y, int z) {
    TileEntity te = ba.getTileEntity(x, y, z);
    if(!(te instanceof IConduitBundle)) {
      return null;
    }
    IConduitBundle cb = (IConduitBundle) te;
    Block id = cb.getFacadeId();
    int meta = cb.getFacadeMetadata();

    if(id == null) {
      return null;
    }
View Full Code Here

TOP

Related Classes of crazypants.enderio.conduit.IConduitBundle

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.