init commit of working things
This commit is contained in:
commit
06a0ff2060
66 changed files with 1917 additions and 0 deletions
21
src/main/java/com/therealm18studios/lc/LibreComponents.java
Normal file
21
src/main/java/com/therealm18studios/lc/LibreComponents.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package com.therealm18studios.lc;
|
||||
|
||||
import com.therealm18studios.lc.common.item.ItemGroup;
|
||||
import com.therealm18studios.lc.common.item.Items;
|
||||
import li.cil.oc2r.common.ConfigManager;
|
||||
import net.minecraftforge.fml.common.Mod;
|
||||
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
|
||||
|
||||
@Mod("librecomponents")
|
||||
public final class LibreComponents {
|
||||
|
||||
public static String MOD_ID = "librecomponents";
|
||||
|
||||
public LibreComponents() {
|
||||
|
||||
ConfigManager.initialize();
|
||||
|
||||
Items.initialize();
|
||||
ItemGroup.TAB_REGISTER.register(FMLJavaModLoadingContext.get().getModEventBus());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue