package gregtech.api.util; import gregtech.api.interfaces.tileentity.IGregTechTileEntity; public interface IGTHatchAdder { /** * Callback to add hatch, needs to check if hatch is valid (and add it) * * @param iGregTechTileEntity hatch * @param aShort requested texture index, or null if not... * @return managed to add hatch (structure still valid) */ boolean apply(T t, IGregTechTileEntity iGregTechTileEntity, Short aShort); /** * hack to work around java generic issues. */ @SuppressWarnings("unchecked") default IGTHatchAdder rebrand() { return (IGTHatchAdder) this; } default IGTHatchAdder orElse(IGTHatchAdder fallback) { return (t, iGregTechTileEntity, aShort) -> IGTHatchAdder.this.apply(t, iGregTechTileEntity, aShort) || fallback.apply(t, iGregTechTileEntity, aShort); } }