Package mffs.container

Source Code of mffs.container.ContainerBiometricIdentifier

package mffs.container;

import mffs.slot.SlotActive;
import mffs.slot.SlotBase;
import mffs.tile.TileBiometricIdentifier;
import net.minecraft.entity.player.EntityPlayer;
import resonant.lib.gui.ContainerBase;

public class ContainerBiometricIdentifier extends ContainerBase
{
  public ContainerBiometricIdentifier(EntityPlayer player, TileBiometricIdentifier tileentity)
  {
    super(tileentity);

    this.addSlotToContainer(new SlotActive(tileentity, 0, 88, 91));

    this.addSlotToContainer(new SlotBase(tileentity, 1, 8, 46));
    this.addSlotToContainer(new SlotActive(tileentity, 2, 8, 91));

    for (int var4 = 0; var4 < 9; var4++)
    {
      this.addSlotToContainer(new SlotActive(tileentity, 3 + var4, 8 + var4 * 18, 111));
    }

    this.addSlotToContainer(new SlotBase(tileentity, TileBiometricIdentifier.SLOT_COPY, 8, 66));

    this.addPlayerInventory(player);
  }

}
TOP

Related Classes of mffs.container.ContainerBiometricIdentifier

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.