2
0
Fork 0
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.

33 lines
676 B
Java

package net.minecraft.block.material;
public class MaterialTransparent extends Material
{
private static final String __OBFID = "CL_00000540";
public MaterialTransparent(MapColor p_i2113_1_)
{
super(p_i2113_1_);
this.setReplaceable();
}
public boolean isSolid()
{
return false;
}
/**
* Will prevent grass from growing on dirt underneath and kill any grass below it if it returns true
*/
public boolean getCanBlockGrass()
{
return false;
}
/**
* Returns if this material is considered solid or not
*/
public boolean blocksMovement()
{
return false;
}
}