basic crafting grid gui stuff (no functionality yet)

This commit is contained in:
Raoul Van den Berge
2015-12-22 13:31:00 +01:00
parent 2c65adaaee
commit 7a99d963b0
9 changed files with 107 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
package storagecraft.item;
import net.minecraft.block.Block;
public class ItemBlockGrid extends ItemBlockBase
{
public ItemBlockGrid(Block block)
{
super(block);
}
}