Added storage blocks
This commit is contained in:
parent
9b5a57bedb
commit
f50f144b28
4 changed files with 127 additions and 0 deletions
16
src/main/java/techreborn/itemblocks/ItemBlockStorage.java
Normal file
16
src/main/java/techreborn/itemblocks/ItemBlockStorage.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package techreborn.itemblocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.ItemMultiTexture;
|
||||
import techreborn.blocks.BlockOre;
|
||||
import techreborn.blocks.BlockStorage;
|
||||
import techreborn.init.ModBlocks;
|
||||
|
||||
public class ItemBlockStorage extends ItemMultiTexture{
|
||||
|
||||
public ItemBlockStorage(Block block)
|
||||
{
|
||||
super(ModBlocks.storage, ModBlocks.storage, BlockStorage.types);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue