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

21 lines
548 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 {
2015-04-24 15:20:09 +02:00
public static void init()
{
for (int i = 0; i < 14; i++) {
ModPartRegistry.registerPart(new CablePart(i));
}
2015-04-24 15:20:09 +02:00
ModPartRegistry.addProvider(
"techreborn.partSystem.QLib.QModPartFactory", "qmunitylib");
ModPartRegistry.addProvider("techreborn.partSystem.fmp.FMPFactory",
"ForgeMultipart");
ModPartRegistry.addAllPartsToSystems();
}
}