Examples of SlotColorFilter


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

    public ContainerDetectorLocomotive(InventoryPlayer inventoryplayer, TileDetector tile) {
        super(((DetectorLocomotive) tile.getDetector()).getFilters());
        this.tile = tile;
        this.detector = (DetectorLocomotive) tile.getDetector();
        addSlot(new SlotColorFilter(detector.getFilters(), 0, 35, 26));
        addSlot(new SlotColorFilter(detector.getFilters(), 1, 35, 52));

        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, 88 + 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.