use of com.skelril.skree.system.registry.recipe.CustomRecipeSystem in project Skree by Skelril.
the class CustomRegisterySystem method preInit.
@NModuleTrigger(trigger = "PRE_INITIALIZATION")
public void preInit() {
customItemSystem = new CustomItemSystem();
customItemSystem.preInit();
customBlockSystem = new CustomBlockSystem();
customBlockSystem.preInit();
customItemSystem.associate();
customBlockSystem.associate();
customRecipeSystem = new CustomRecipeSystem();
customRecipeSystem.associate();
}
Aggregations