Package appeng.api.me.tiles

Examples of appeng.api.me.tiles.IGridTileEntity


   * @param z
   * @return interfaceForGrid
   */
    public static IGridInterface getGridInterface(World w, int x, int y, int z)
    {
        IGridTileEntity te = getGridEntity(w, x, y, z);

        if (te != null)
        {
            return te.getGrid();
        }

        return null;
    }
View Full Code Here


     * @param z
     * @return isOnNetwork
     */
    public static boolean isOnGrid(World w, int x, int y, int z)
    {
        IGridTileEntity te = getGridEntity(w, x, y, z);

        if (te != null)
        {
            return te.getGrid() != null;
        }

        return false;
    }
View Full Code Here

TOP

Related Classes of appeng.api.me.tiles.IGridTileEntity

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.