Files
PrimalSorcery/build/tmp/recompileMc/sources/net/minecraft/block/BlockRedFlower.java
Mohammad-Ali Minaie b86dedad2f base mod created
2018-10-08 09:07:47 -04:00

12 lines
259 B
Java

package net.minecraft.block;
public class BlockRedFlower extends BlockFlower
{
/**
* Get the Type of this flower (Yellow/Red)
*/
public BlockFlower.EnumFlowerColor getBlockType()
{
return BlockFlower.EnumFlowerColor.RED;
}
}