Package net.minecraft.block

Examples of net.minecraft.block.BlockSourceImpl


    }
  }

  protected void dispense(World world, int x, int y, int z, ItemStack toDispense)
  {
    BlockSourceImpl blockSource = new BlockSourceImpl(world, x, y, z);
    world.playAuxSFX(1001, x, y, z, 0);
    IBehaviorDispenseItem ibehaviordispenseitem = getBehaviorForItemStack(toDispense);
    ibehaviordispenseitem.dispense(blockSource, toDispense);
  }
View Full Code Here

TOP

Related Classes of net.minecraft.block.BlockSourceImpl

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.