-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAdvancedRocketryModule.java
More file actions
25 lines (21 loc) · 1009 Bytes
/
AdvancedRocketryModule.java
File metadata and controls
25 lines (21 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.github.gtexpert.gtwp.integration.advrocketry;
import net.minecraft.item.crafting.IRecipe;
import net.minecraftforge.event.RegistryEvent;
import com.github.gtexpert.gtwp.api.ModValues;
import com.github.gtexpert.gtwp.api.modules.TModule;
import com.github.gtexpert.gtwp.api.util.Mods;
import com.github.gtexpert.gtwp.integration.GTWPIntegrationSubmodule;
import com.github.gtexpert.gtwp.integration.advrocketry.recipes.AdvancedRocketryWoodRecipe;
import com.github.gtexpert.gtwp.module.Modules;
@TModule(
moduleID = Modules.MODULE_ADVROCKETRY,
containerID = ModValues.MODID,
modDependencies = Mods.Names.ADVANCED_ROCKETRY,
name = "GTWoodProcessing Advanced Rocketry Integration",
description = "Advanced Rocketry Integration Module")
public class AdvancedRocketryModule extends GTWPIntegrationSubmodule {
@Override
public void registerRecipesNormal(RegistryEvent.Register<IRecipe> event) {
AdvancedRocketryWoodRecipe.init();
}
}