12 lines
265 B
Java
12 lines
265 B
Java
package net.minecraft.block;
|
|
|
|
public class BlockYellowFlower extends BlockFlower
|
|
{
|
|
/**
|
|
* Get the Type of this flower (Yellow/Red)
|
|
*/
|
|
public BlockFlower.EnumFlowerColor getBlockType()
|
|
{
|
|
return BlockFlower.EnumFlowerColor.YELLOW;
|
|
}
|
|
} |