Removed old ones, and added new ones :)

This commit is contained in:
modmuss50 2015-04-20 20:53:16 +01:00
parent 5164301ffb
commit 41795ef16d
9 changed files with 213 additions and 171 deletions

View file

@ -0,0 +1,16 @@
package techreborn.init;
import me.modmuss50.network.partSystem.ModPartRegistry;
import me.modmuss50.network.partSystem.block.WorldProvider;
import me.modmuss50.network.partSystem.parts.CablePart;
public class ModParts {
public static void init(){
ModPartRegistry.registerPart(new CablePart());
ModPartRegistry.addProvider("me.modmuss50.network.partSystem.QLib.QModPartFactory", "qmunitylib");
ModPartRegistry.addProvider("me.modmuss50.network.partSystem.fmp.FMPFactory", "ForgeMultipart");
ModPartRegistry.addProvider(new WorldProvider());
ModPartRegistry.addAllPartsToSystems();
}
}