Search in sources :

Example 1 with CustomItemSystem

use of com.skelril.skree.system.registry.item.CustomItemSystem 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();
}
Also used : CustomRecipeSystem(com.skelril.skree.system.registry.recipe.CustomRecipeSystem) CustomBlockSystem(com.skelril.skree.system.registry.block.CustomBlockSystem) CustomItemSystem(com.skelril.skree.system.registry.item.CustomItemSystem) NModuleTrigger(com.skelril.nitro.module.NModuleTrigger)

Aggregations

NModuleTrigger (com.skelril.nitro.module.NModuleTrigger)1 CustomBlockSystem (com.skelril.skree.system.registry.block.CustomBlockSystem)1 CustomItemSystem (com.skelril.skree.system.registry.item.CustomItemSystem)1 CustomRecipeSystem (com.skelril.skree.system.registry.recipe.CustomRecipeSystem)1