Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package somarani.soulcraft.block;
- import cpw.mods.fml.common.registry.GameRegistry;
- import somarani.soulcraft.common.SoulCraft;
- import net.minecraft.block.Block;
- import net.minecraft.block.material.Material;
- public class BlockInfusedStone extends Block{
- public BlockInfusedStone(Material p_i45394_1_) {
- super(p_i45394_1_);
- setBlockName("infusedstone");
- setCreativeTab(SoulCraft.tabSoul);
- setLightLevel(0.7f);
- setBlockTextureName("soulcraft:infusedstone");
- GameRegistry.registerBlock(this, "infusedstone");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment