Package appeng.api.util

Examples of appeng.api.util.WorldCoord


      return;

    ItemStack notAdded = sia.addItems( output );
    if ( notAdded != null )
    {
      WorldCoord wc = new WorldCoord( xCoord, yCoord, zCoord );

      wc.add( getForward(), 1 );

      List<ItemStack> out = new ArrayList<ItemStack>();
      out.add( notAdded );

      Platform.spawnDrops( worldObj, wc.x, wc.y, wc.z, out );
View Full Code Here


    if ( Platform.isClient() )
      return;

    try
    {
      WorldCoord min = loc.copy();
      WorldCoord max = loc.copy();

      // find size of MB structure...
      while (isValidTileAt( world, min.x - 1, min.y, min.z ))
        min.x--;
      while (isValidTileAt( world, min.x, min.y - 1, min.z ))
View Full Code Here

TOP

Related Classes of appeng.api.util.WorldCoord

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.