From dd1f4f7a3e730a5ab58a5ed8d90b8470d40d3759 Mon Sep 17 00:00:00 2001 From: Antifluxfield Date: Fri, 30 Jun 2017 04:47:21 +0800 Subject: [PATCH] Create GT_GUIContainer_DataAccess.java --- .../api/gui/GT_GUIContainer_DataAccess.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main/java/gregtech/api/gui/GT_GUIContainer_DataAccess.java diff --git a/src/main/java/gregtech/api/gui/GT_GUIContainer_DataAccess.java b/src/main/java/gregtech/api/gui/GT_GUIContainer_DataAccess.java new file mode 100644 index 00000000..10c7fc26 --- /dev/null +++ b/src/main/java/gregtech/api/gui/GT_GUIContainer_DataAccess.java @@ -0,0 +1,15 @@ +package gregtech.api.gui; + +import gregtech.api.interfaces.tileentity.IGregTechTileEntity; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.util.ResourceLocation; + +import static gregtech.api.enums.GT_Values.RES_PATH_GUI; + +public class GT_GUIContainer_DataAccess extends GT_GUIContainer_4by4 { + + public GT_GUIContainer_DataAccess(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity, String aName) { + super(aInventoryPlayer, aTileEntity, aName); + mGUIbackground = new ResourceLocation(mGUIbackgroundPath = RES_PATH_GUI + "DataAccess.png"); + } +}