- package ${MAIN_CLASS.packageName};
-
- import net.minecraftforge.fml.common.Mod;
-
- @Mod(Constants.MOD_ID)
- public class ${MAIN_CLASS.className} {
-
- public ${MAIN_CLASS.className}() {
- // This method is invoked by the Forge mod loader when it is ready
- // to load your mod. You can access Forge and Common code in this
- // project.
-
- // Use Forge to bootstrap the Common mod.
- Constants.LOG.info("Hello Forge world!");
- CommonClass.init();
-
- }
- }