blob: 4111848ecb94739b89462d60a83007770a8d26cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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) {}
}
|