You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
365 B
Java
11 lines
365 B
Java
package net.minecraftforge.common;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
public interface IPlantable
|
|
{
|
|
public EnumPlantType getPlantType(IBlockAccess world, int x, int y, int z);
|
|
public Block getPlant(IBlockAccess world, int x, int y, int z);
|
|
public int getPlantMetadata(IBlockAccess world, int x, int y, int z);
|
|
} |