Package mods.railcraft.common.gui.slots

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


    public ContainerDetectorSheep(InventoryPlayer inventoryplayer, TileDetector tile) {
        super(((DetectorSheep) tile.getDetector()).getFilters());
        this.tile = tile;
        this.detector = (DetectorSheep) tile.getDetector();
        addSlot(new SlotWoolFilter(detector.getFilters(), 0, 60, 24));

        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, 58 + i * 18));
            }
View Full Code Here

TOP

Related Classes of mods.railcraft.common.gui.slots.SlotWoolFilter

Copyright © 2018 www.massapicom. 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.