blob: ab4203bca6c2e78d7a30df37195494c1b5313493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package gtPlusPlus.xmod.gregtech.loaders.misc;
import gregtech.api.util.GTPP_Recipe;
import gregtech.api.util.GT_ProcessingArray_Manager;
import gregtech.api.util.GT_Recipe.GT_Recipe_Map;
import gtPlusPlus.api.objects.Logger;
public class AddCustomMachineToPA {
public static void register() {
// Simple Washers
GT_ProcessingArray_Manager.addRecipeMapToPA("simplewasher.01", GTPP_Recipe.GTPP_Recipe_Map.sSimpleWasherRecipes);
}
}
|