rename storage proxy to external storage

This commit is contained in:
Raoul Van den Berge
2015-12-23 15:32:38 +01:00
parent 6d8321f2ce
commit 7574747c46
12 changed files with 70 additions and 70 deletions

View File

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