cn.nukkit.block.BlockDandelion 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 xtypr
* @since 2015/12/2
*/
public class BlockDandelion extends BlockFlower {
public BlockDandelion() {
this(0);
}
public BlockDandelion(int meta) {
super(0);
}
@Override
public String getName() {
return "Dandelion";
}
@Override
public int getId() {
return DANDELION;
}
@Override
protected Block getUncommonFlower() {
return get(POPPY);
}
}