move classes to other package

This commit is contained in:
Raoul Van den Berge
2015-12-18 03:56:25 +01:00
parent bc7aca642b
commit 9cd5f2487c
10 changed files with 13 additions and 13 deletions

View File

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