added the whole exporter. does nothing yet though

This commit is contained in:
Raoul Van den Berge
2015-12-19 00:47:09 +01:00
parent cfcb518ddd
commit 2e9862d339
12 changed files with 252 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
package storagecraft.container;
import net.minecraft.entity.player.EntityPlayer;
import storagecraft.container.slot.SlotSpecimen;
import storagecraft.tile.TileExporter;
public class ContainerExporter extends ContainerBase {
public ContainerExporter(EntityPlayer player, TileExporter exporter) {
super(player);
addSlotToContainer(new SlotSpecimen(exporter, 0, 80, 20));
addPlayerInventory(8, 104);
}
}