cn.nukkit.block.BlockMushroomRed 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;
/**
* @author Pub4Game
* @since 03.01.2015
*/
public class BlockMushroomRed extends BlockMushroom {
public BlockMushroomRed() {
super();
}
public BlockMushroomRed(int meta) {
super(0);
}
@Override
public String getName() {
return "Red Mushroom";
}
@Override
public int getId() {
return RED_MUSHROOM;
}
@Override
protected int getType() {
return 1;
}
}