Package org.bukkit.craftbukkit.block

Examples of org.bukkit.craftbukkit.block.CraftBlockState


* (Why is there no base class in the Bukkit API? How annoying.)
*/
public class BlockStateBase extends BlockStateProxy {

  public BlockStateBase(Block block) {
    super(new CraftBlockState(block));
  }
View Full Code Here


      if (inst != null) {
        return inst.newInstance(block, tileEntity);
      }
    }
    // All BlockState types REQUIRE a tile entity, just return the default BlockState here
    return new CraftBlockState(block);
  }
View Full Code Here

TOP

Related Classes of org.bukkit.craftbukkit.block.CraftBlockState

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.