Added 5 additional types of machine hulls and their respective textures

This commit is contained in:
Tntrololol 2015-05-22 15:02:02 -05:00
parent e930ea2a04
commit e9b1280a13
10 changed files with 84 additions and 37 deletions

View file

@ -0,0 +1,13 @@
package techreborn.itemblocks;
import net.minecraft.block.Block;
import techreborn.blocks.BlockMachineFrame;
import techreborn.init.ModBlocks;
public class ItemBlockMachineFrame extends ItemBlockBase {
public ItemBlockMachineFrame(Block block) {
super(ModBlocks.machineframe, ModBlocks.machineframe, BlockMachineFrame.types);
}
}