cn.nukkit.block.BlockDoubleSlab Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.block;
import cn.nukkit.api.DeprecationDetails;
import cn.nukkit.api.PowerNukkitDifference;
/**
* @author MagicDroidX (Nukkit Project)
*/
@Deprecated
@DeprecationDetails(reason = "Unused and the same as BlockDoubleSlabStone", since = "1.4.0.0-PN", replaceWith = "BlockDoubleSlabBase")
@PowerNukkitDifference(info = "Overrides BlockDoubleSlabStone only in PowerNukkit", since = "1.4.0.0-PN")
public class BlockDoubleSlab extends BlockDoubleSlabStone {
public static final int STONE = 0;
public static final int SANDSTONE = 1;
public static final int WOODEN = 2;
public static final int COBBLESTONE = 3;
public static final int BRICK = 4;
public static final int STONE_BRICK = 5;
public static final int QUARTZ = 6;
public static final int NETHER_BRICK = 7;
public BlockDoubleSlab() {
this(0);
}
public BlockDoubleSlab(int meta) {
super(meta);
}
}