Package mekanism.api

Examples of mekanism.api.BlockInfo


    }

    Coord4D coord = tileEntity.getStartingCoord();
    int diameter = tileEntity.getDiameter();
    int size = tileEntity.getTotalSize();
    BlockInfo info = new BlockInfo(null, 0);

    for(int i = 0; i < size; i++)
    {
      int x = coord.xCoord+i%diameter;
      int z = coord.zCoord+(i/diameter)%diameter;
View Full Code Here

TOP

Related Classes of mekanism.api.BlockInfo

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.