Advertisement
robertwe

RozoweDeski.java

Oct 16th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package com.Robsoon.MoWoods;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5.  
  6. public class RozoweDeski extends Block {
  7.  
  8. public RozoweDeski(Material material) {
  9. super(material);
  10. this.setBlockName("RozoweDeski");
  11. this.setHardness(2.0f);
  12. this.setBlockTextureName(MoWoods.MODID + ":" + "rozowedeski");
  13. this.setStepSound(soundTypeWood);
  14. this.setCreativeTab(MoWoods.Zakladka);
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement