Package com.bergerkiller.bukkit.common.bases

Source Code of com.bergerkiller.bukkit.common.bases.BlockStateBase

package com.bergerkiller.bukkit.common.bases;

import org.bukkit.block.Block;
import org.bukkit.craftbukkit.block.CraftBlockState;

import com.bergerkiller.bukkit.common.proxies.BlockStateProxy;

/**
* A base class for a Block State implementation.
* Does not extend CraftBlockState, this Class is meant as a copied replacement.
* (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));
  }
}
TOP

Related Classes of com.bergerkiller.bukkit.common.bases.BlockStateBase

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.