add redstone controls

This commit is contained in:
Raoul Van den Berge
2015-12-18 15:10:38 +01:00
parent 8bf0f66530
commit 2bae408c59
23 changed files with 376 additions and 98 deletions

View File

@@ -0,0 +1,11 @@
package storagecraft.container;
import net.minecraft.entity.player.EntityPlayer;
public class ContainerStorageProxy extends ContainerBase {
public ContainerStorageProxy(EntityPlayer player) {
super(player);
addPlayerInventory(8, 50);
}
}