Search in sources :

Example 1 with IndustrialElectrolyzerRecipeCategory

use of techreborn.compat.jei.industrialElectrolyzer.IndustrialElectrolyzerRecipeCategory in project TechReborn by TechReborn.

the class TechRebornJeiPlugin method registerCategories.

@Override
public void registerCategories(IRecipeCategoryRegistration registry) {
    final IJeiHelpers jeiHelpers = registry.getJeiHelpers();
    final IGuiHelper guiHelper = jeiHelpers.getGuiHelper();
    registry.addRecipeCategories(new AlloySmelterRecipeCategory(guiHelper), new AssemblingMachineRecipeCategory(guiHelper), new BlastFurnaceRecipeCategory(guiHelper), new CentrifugeRecipeCategory(guiHelper), new ChemicalReactorRecipeCategory(guiHelper), new DistillationTowerRecipeCategory(guiHelper), new FusionReactorRecipeCategory(guiHelper), new GrinderRecipeCategory(guiHelper), new ImplosionCompressorRecipeCategory(guiHelper), new IndustrialGrinderRecipeCategory(guiHelper), new IndustrialElectrolyzerRecipeCategory(guiHelper), new IndustrialSawmillRecipeCategory(guiHelper), new RollingMachineRecipeCategory(guiHelper), new VacuumFreezerRecipeCategory(guiHelper));
    if (CompatConfigs.showScrapbox) {
        registry.addRecipeCategories(new ScrapboxRecipeCategory(guiHelper));
    }
    for (final EFluidGenerator type : EFluidGenerator.values()) registry.addRecipeCategories(new FluidGeneratorRecipeCategory(type, guiHelper));
    if (!IC2Duplicates.deduplicate()) {
        registry.addRecipeCategories(new CompressorRecipeCategory(guiHelper), new ExtractorRecipeCategory(guiHelper));
    }
}
Also used : IndustrialGrinderRecipeCategory(techreborn.compat.jei.industrialGrinder.IndustrialGrinderRecipeCategory) RollingMachineRecipeCategory(techreborn.compat.jei.rollingMachine.RollingMachineRecipeCategory) AssemblingMachineRecipeCategory(techreborn.compat.jei.assemblingMachine.AssemblingMachineRecipeCategory) EFluidGenerator(techreborn.api.generator.EFluidGenerator) BlastFurnaceRecipeCategory(techreborn.compat.jei.blastFurnace.BlastFurnaceRecipeCategory) AlloySmelterRecipeCategory(techreborn.compat.jei.alloySmelter.AlloySmelterRecipeCategory) CompressorRecipeCategory(techreborn.compat.jei.compressor.CompressorRecipeCategory) ImplosionCompressorRecipeCategory(techreborn.compat.jei.implosionCompressor.ImplosionCompressorRecipeCategory) CentrifugeRecipeCategory(techreborn.compat.jei.centrifuge.CentrifugeRecipeCategory) ImplosionCompressorRecipeCategory(techreborn.compat.jei.implosionCompressor.ImplosionCompressorRecipeCategory) IndustrialGrinderRecipeCategory(techreborn.compat.jei.industrialGrinder.IndustrialGrinderRecipeCategory) GrinderRecipeCategory(techreborn.compat.jei.grinder.GrinderRecipeCategory) FluidGeneratorRecipeCategory(techreborn.compat.jei.generators.fluid.FluidGeneratorRecipeCategory) ChemicalReactorRecipeCategory(techreborn.compat.jei.chemicalReactor.ChemicalReactorRecipeCategory) FusionReactorRecipeCategory(techreborn.compat.jei.fusionReactor.FusionReactorRecipeCategory) IndustrialSawmillRecipeCategory(techreborn.compat.jei.industrialSawmill.IndustrialSawmillRecipeCategory) ScrapboxRecipeCategory(techreborn.compat.jei.scrapbox.ScrapboxRecipeCategory) DistillationTowerRecipeCategory(techreborn.compat.jei.distillationTower.DistillationTowerRecipeCategory) IndustrialElectrolyzerRecipeCategory(techreborn.compat.jei.industrialElectrolyzer.IndustrialElectrolyzerRecipeCategory) VacuumFreezerRecipeCategory(techreborn.compat.jei.vacuumFreezer.VacuumFreezerRecipeCategory) ExtractorRecipeCategory(techreborn.compat.jei.extractor.ExtractorRecipeCategory)

Aggregations

EFluidGenerator (techreborn.api.generator.EFluidGenerator)1 AlloySmelterRecipeCategory (techreborn.compat.jei.alloySmelter.AlloySmelterRecipeCategory)1 AssemblingMachineRecipeCategory (techreborn.compat.jei.assemblingMachine.AssemblingMachineRecipeCategory)1 BlastFurnaceRecipeCategory (techreborn.compat.jei.blastFurnace.BlastFurnaceRecipeCategory)1 CentrifugeRecipeCategory (techreborn.compat.jei.centrifuge.CentrifugeRecipeCategory)1 ChemicalReactorRecipeCategory (techreborn.compat.jei.chemicalReactor.ChemicalReactorRecipeCategory)1 CompressorRecipeCategory (techreborn.compat.jei.compressor.CompressorRecipeCategory)1 DistillationTowerRecipeCategory (techreborn.compat.jei.distillationTower.DistillationTowerRecipeCategory)1 ExtractorRecipeCategory (techreborn.compat.jei.extractor.ExtractorRecipeCategory)1 FusionReactorRecipeCategory (techreborn.compat.jei.fusionReactor.FusionReactorRecipeCategory)1 FluidGeneratorRecipeCategory (techreborn.compat.jei.generators.fluid.FluidGeneratorRecipeCategory)1 GrinderRecipeCategory (techreborn.compat.jei.grinder.GrinderRecipeCategory)1 ImplosionCompressorRecipeCategory (techreborn.compat.jei.implosionCompressor.ImplosionCompressorRecipeCategory)1 IndustrialElectrolyzerRecipeCategory (techreborn.compat.jei.industrialElectrolyzer.IndustrialElectrolyzerRecipeCategory)1 IndustrialGrinderRecipeCategory (techreborn.compat.jei.industrialGrinder.IndustrialGrinderRecipeCategory)1 IndustrialSawmillRecipeCategory (techreborn.compat.jei.industrialSawmill.IndustrialSawmillRecipeCategory)1 RollingMachineRecipeCategory (techreborn.compat.jei.rollingMachine.RollingMachineRecipeCategory)1 ScrapboxRecipeCategory (techreborn.compat.jei.scrapbox.ScrapboxRecipeCategory)1 VacuumFreezerRecipeCategory (techreborn.compat.jei.vacuumFreezer.VacuumFreezerRecipeCategory)1