TechReborn/src/main/java/techreborn/init/ModParts.java

17 lines
550 B
Java
Raw Normal View History

package techreborn.init;
2015-04-20 22:02:25 +02:00
import techreborn.partSystem.ModPartRegistry;
import techreborn.partSystem.block.WorldProvider;
import techreborn.partSystem.parts.CablePart;
public class ModParts {
public static void init(){
ModPartRegistry.registerPart(new CablePart());
2015-04-20 22:02:25 +02:00
ModPartRegistry.addProvider("techreborn.partSystem.QLib.QModPartFactory", "qmunitylib");
ModPartRegistry.addProvider("techreborn.partSystem.fmp.FMPFactory", "ForgeMultipart");
ModPartRegistry.addProvider(new WorldProvider());
ModPartRegistry.addAllPartsToSystems();
}
}