TechReborn/src/main/java/techreborn/compat/nei/NEIConfig.java

88 lines
3.1 KiB
Java
Raw Normal View History

2015-04-14 01:12:24 +02:00
package techreborn.compat.nei;
import codechicken.nei.api.API;
import codechicken.nei.api.IConfigureNEI;
2015-06-12 19:40:08 +02:00
import techreborn.compat.nei.recipes.AlloySmelterRecipeHandler;
import techreborn.compat.nei.recipes.AssemblingMachineRecipeHandler;
import techreborn.compat.nei.recipes.BlastFurnaceRecipeHandler;
2015-06-12 19:40:08 +02:00
import techreborn.compat.nei.recipes.CentrifugeRecipeHandler;
import techreborn.compat.nei.recipes.ChemicalReactorRecipeHandler;
import techreborn.compat.nei.recipes.GrinderRecipeHandler;
import techreborn.compat.nei.recipes.ImplosionCompressorRecipeHandler;
import techreborn.compat.nei.recipes.IndustrialElectrolyzerRecipeHandler;
2015-06-12 19:40:08 +02:00
import techreborn.compat.nei.recipes.IndustrialSawmillRecipeHandler;
import techreborn.compat.nei.recipes.LatheRecipeHandler;
import techreborn.compat.nei.recipes.PlateCuttingMachineRecipeHandler;
import techreborn.lib.ModInfo;
2015-04-15 17:23:12 +02:00
public class NEIConfig implements IConfigureNEI {
2015-04-14 01:12:24 +02:00
2015-06-12 19:40:08 +02:00
@Override
public String getName() {
return ModInfo.MOD_ID;
}
2015-06-12 19:40:08 +02:00
@Override
public String getVersion() {
return ModInfo.MOD_VERSION;
}
2015-04-24 15:20:09 +02:00
2015-06-12 19:40:08 +02:00
@Override
public void loadConfig() {
ShapedRollingMachineHandler shapedRollingMachineHandler = new ShapedRollingMachineHandler();
ShapelessRollingMachineHandler shapelessRollingMachineHandler = new ShapelessRollingMachineHandler();
2015-06-12 19:40:08 +02:00
ImplosionCompressorRecipeHandler implosion = new ImplosionCompressorRecipeHandler();
API.registerUsageHandler(implosion);
API.registerRecipeHandler(implosion);
2015-06-12 19:40:08 +02:00
AlloySmelterRecipeHandler alloy = new AlloySmelterRecipeHandler();
API.registerUsageHandler(alloy);
API.registerRecipeHandler(alloy);
2015-06-12 19:40:08 +02:00
AssemblingMachineRecipeHandler assembling = new AssemblingMachineRecipeHandler();
API.registerUsageHandler(assembling);
API.registerRecipeHandler(assembling);
2015-06-12 19:40:08 +02:00
LatheRecipeHandler lathe = new LatheRecipeHandler();
API.registerUsageHandler(lathe);
API.registerRecipeHandler(lathe);
2015-06-12 19:40:08 +02:00
IndustrialSawmillRecipeHandler sawmill = new IndustrialSawmillRecipeHandler();
API.registerUsageHandler(sawmill);
API.registerRecipeHandler(sawmill);
2015-06-12 19:40:08 +02:00
PlateCuttingMachineRecipeHandler plate = new PlateCuttingMachineRecipeHandler();
API.registerUsageHandler(plate);
API.registerRecipeHandler(plate);
2015-06-12 19:40:08 +02:00
ChemicalReactorRecipeHandler chem = new ChemicalReactorRecipeHandler();
API.registerUsageHandler(chem);
API.registerRecipeHandler(chem);
2015-06-12 19:40:08 +02:00
CentrifugeRecipeHandler cent = new CentrifugeRecipeHandler();
API.registerUsageHandler(cent);
API.registerRecipeHandler(cent);
2015-04-24 15:20:09 +02:00
GrinderRecipeHandler grind = new GrinderRecipeHandler();
API.registerUsageHandler(grind);
API.registerRecipeHandler(grind);
IndustrialElectrolyzerRecipeHandler elec = new IndustrialElectrolyzerRecipeHandler();
API.registerUsageHandler(elec);
API.registerRecipeHandler(elec);
BlastFurnaceRecipeHandler blast = new BlastFurnaceRecipeHandler();
API.registerUsageHandler(blast);
API.registerRecipeHandler(blast);
2015-06-12 19:40:08 +02:00
API.registerUsageHandler(shapedRollingMachineHandler);
API.registerRecipeHandler(shapedRollingMachineHandler);
2015-04-29 17:02:01 +02:00
2015-06-12 19:40:08 +02:00
API.registerUsageHandler(shapelessRollingMachineHandler);
API.registerRecipeHandler(shapelessRollingMachineHandler);
2015-04-14 01:12:24 +02:00
2015-06-12 19:40:08 +02:00
}
2015-04-14 01:12:24 +02:00
}