Removed old ones, and added new ones :)
This commit is contained in:
parent
5164301ffb
commit
41795ef16d
9 changed files with 213 additions and 171 deletions
16
src/main/java/techreborn/init/ModParts.java
Normal file
16
src/main/java/techreborn/init/ModParts.java
Normal 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();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue