Added all gtechs ores
This commit is contained in:
parent
2281511a20
commit
e87908dc03
4 changed files with 107 additions and 0 deletions
15
src/main/java/techreborn/itemblocks/ItemBlockOre.java
Normal file
15
src/main/java/techreborn/itemblocks/ItemBlockOre.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package techreborn.itemblocks;
|
||||
|
||||
import techreborn.Core;
|
||||
import techreborn.blocks.BlockOre;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.ItemMultiTexture;
|
||||
|
||||
public class ItemBlockOre extends ItemMultiTexture{
|
||||
|
||||
public ItemBlockOre(Block block)
|
||||
{
|
||||
super(Core.ore, Core.ore, BlockOre.types);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue