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.
15 lines
348 B
Java
15 lines
348 B
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
public class BlockSponge extends Block
|
|
{
|
|
private static final String __OBFID = "CL_00000311";
|
|
|
|
protected BlockSponge()
|
|
{
|
|
super(Material.sponge);
|
|
this.setCreativeTab(CreativeTabs.tabBlock);
|
|
}
|
|
} |