Examples of CraftBlockState


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

Examples of org.bukkit.craftbukkit.block.CraftBlockState

      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
Copyright © 2018 www.massapi.com. 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.