add bad rendering creative controller

This commit is contained in:
Raoul Van den Berge
2015-12-29 12:56:28 +01:00
parent 2237784d5f
commit a8e754772a
10 changed files with 129 additions and 12 deletions

View File

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