aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/modularui/IAddInventorySlots.java
blob: 70e33aa2c8c3c5fb2e2db34ce5b82a11485e5b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package gregtech.api.interfaces.modularui;

import com.gtnewhorizons.modularui.api.drawable.IDrawable;
import com.gtnewhorizons.modularui.api.screen.ModularWindow;

public interface IAddInventorySlots {
    default void add1by1Slot(ModularWindow.Builder builder, IDrawable... background) {}

    default void add2by2Slots(ModularWindow.Builder builder, IDrawable... background) {}

    default void add3by3Slots(ModularWindow.Builder builder, IDrawable... background) {}

    default void add4by4Slots(ModularWindow.Builder builder, IDrawable... background) {}
}