Copper and Tin ore

This commit is contained in:
gigabit101 2016-02-25 13:35:12 +00:00
parent cebb49555a
commit 46cd99cdf5
5 changed files with 151 additions and 1 deletions

View file

@ -0,0 +1,15 @@
package techreborn.itemblocks;
import net.minecraft.block.Block;
import reborncore.common.itemblock.ItemBlockBase;
import techreborn.blocks.BlockOre;
import techreborn.blocks.BlockOre2;
import techreborn.init.ModBlocks;
public class ItemBlockOre2 extends ItemBlockBase {
public ItemBlockOre2(Block block) {
super(ModBlocks.ore2, ModBlocks.ore2, BlockOre2.types);
}
}