Added new storage blocks and textures
This commit is contained in:
parent
e9b1280a13
commit
7ad96faa21
11 changed files with 140 additions and 38 deletions
|
@ -5,7 +5,7 @@ import net.minecraft.item.ItemMultiTexture;
|
|||
import techreborn.blocks.BlockStorage;
|
||||
import techreborn.init.ModBlocks;
|
||||
|
||||
public class ItemBlockStorage extends ItemMultiTexture {
|
||||
public class ItemBlockStorage extends ItemBlockBase {
|
||||
|
||||
public ItemBlockStorage(Block block)
|
||||
{
|
||||
|
|
16
src/main/java/techreborn/itemblocks/ItemBlockStorage2.java
Normal file
16
src/main/java/techreborn/itemblocks/ItemBlockStorage2.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package techreborn.itemblocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.item.ItemMultiTexture;
|
||||
import techreborn.blocks.BlockStorage2;
|
||||
import techreborn.init.ModBlocks;
|
||||
|
||||
public class ItemBlockStorage2 extends ItemBlockBase {
|
||||
|
||||
public ItemBlockStorage2(Block block)
|
||||
{
|
||||
super(ModBlocks.storage2, ModBlocks.storage2, BlockStorage2.types);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue