Added all the crafting cpu "blocks" - needs textures and renders.

Updated API
This commit is contained in:
AlgorithmX2
2014-05-10 00:00:02 -05:00
parent f031972fcd
commit 08d6942643
22 changed files with 306 additions and 70 deletions
-19
View File
@@ -1,19 +0,0 @@
package appeng.block.crafting;
import java.util.EnumSet;
import net.minecraft.block.material.Material;
import appeng.block.AEBaseBlock;
import appeng.core.features.AEFeature;
import appeng.tile.crafting.TileCraftingTile;
public class BlockCraftingStorage extends AEBaseBlock
{
public BlockCraftingStorage() {
super( BlockCraftingStorage.class, Material.iron );
setfeature( EnumSet.of( AEFeature.Crafting ) );
setTileEntiy( TileCraftingTile.class );
}
}