Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.flaghacker.learning;
- import net.minecraft.block.Block;
- import net.minecraft.block.material.Material;
- public class Block1 extends Block {
- public Block1() {
- //Set material type
- super(Material.ground);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment