-
-
Save hsyyid/3749a694acd77941db47 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.enzer.wilsonsmpblocks.blocks; | |
import com.enzer.wilsonsmpblocks.WSMPmain; | |
import net.minecraft.block.BlockStairs; | |
import net.minecraft.block.state.IBlockState; | |
public class BlockSandstoneBrickStairs extends BlockStairs | |
{ | |
public static final String NAME = "sandstonebrickstairs"; | |
public BlockSandstoneBrickStairs(IBlockState modelState) | |
{ | |
super(modelState); | |
this.setHardness(1.5F); | |
this.setResistance(5F); | |
this.setHarvestLevel("pickaxe", 1); | |
this.setCreativeTab(WSMPmain.tabWSMPBlocks); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment