Examples of SlotEnergy


Examples of mods.railcraft.common.gui.slots.SlotEnergy

    private short lastStorage, lastLapo;

    public ContainerEnergyLoader(InventoryPlayer inventoryplayer, TileLoaderEnergyBase device) {
        super(device);
        this.device = device;
        addSlot(new SlotEnergy(device, 0, 8, 17));
        addSlot(new SlotEnergy(device, 1, 8, 53));

        addSlot(new SlotUpgrade(device, 2, 152, 8));
        addSlot(new SlotUpgrade(device, 3, 152, 26));
        addSlot(new SlotUpgrade(device, 4, 152, 44));
        addSlot(new SlotUpgrade(device, 5, 152, 62));
View Full Code Here

Examples of mods.railcraft.common.gui.slots.SlotEnergy

    private int lastEnergy;

    public ContainerCartEnergy(InventoryPlayer inventoryplayer, EntityCartEnergy device) {
        super(device);
        this.cart = device;
        addSlot(new SlotEnergy(device, 0, 56, 17));
        addSlot(new SlotEnergy(device, 1, 56, 53));
        for (int i = 0; i < 3; i++) {
            for (int k = 0; k < 9; k++) {
                addSlot(new Slot(inventoryplayer, k + i * 9 + 9, 8 + k * 18, 84 + i * 18));
            }

View Full Code Here
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.