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