aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/reactor/ButtonSlot.java
blob: 2c059e363a3686f2787217eb4dc3cc5eab4b8528 (plain)
1
2
3
4
5
6
7
8
9
10
11
package reactor;

import net.minecraft.inventory.IInventory;
import net.minecraft.inventory.Slot;

public class ButtonSlot extends Slot {

    public ButtonSlot(IInventory playerIventory, int slotID, int posX, int posY) {
        super(playerIventory, slotID, posX, posY);
    }
}