Create GT_GUIContainer_DataAccess.java

This commit is contained in:
Antifluxfield 2017-06-30 04:47:21 +08:00 committed by GitHub
parent a0a596e387
commit dd1f4f7a3e

View file

@ -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");
}
}