blob: fe9f8704fb8fe65f63fb175a317186370943a3ed (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
package gregtech.loaders.preload;
import gregtech.api.util.GT_Log;
import gregtech.loaders.oreprocessing.*;
public class GT_Loader_OreProcessing
implements Runnable {
public void run() {
GT_Log.out.println("GT_Mod: Register Ore processing.");
new ProcessingAll();
new ProcessingArrows();
new ProcessingBeans();
new ProcessingBlock();
new ProcessingBolt();
new ProcessingCell();
new ProcessingCrate();
new ProcessingCircuit();
new ProcessingCompressed();
new ProcessingCrafting();
new ProcessingCrop();
new ProcessingCrushedOre();
new ProcessingCrystallized();
new ProcessingDirty();
new ProcessingDust();
new ProcessingDye();
new ProcessingFoil();
new ProcessingFineWire();
new ProcessingFood();
new ProcessingLens();
new ProcessingShaping();
new ProcessingGem();
new ProcessingGear();
new ProcessingIngot();
new ProcessingItem();
new ProcessingLog();
new ProcessingTransforming();
new ProcessingNugget();
new ProcessingOre();
new ProcessingOrePoor();
new ProcessingOreSmelting();
new ProcessingPipe();
new ProcessingPlank();
new ProcessingPlate();
new ProcessingPure();
new ProcessingRecycling();
new ProcessingRound();
new ProcessingRotor();
new ProcessingSand();
new ProcessingSaplings();
new ProcessingScrew();
new ProcessingSlab();
new ProcessingStick();
new ProcessingStickLong();
new ProcessingStone();
new ProcessingStoneCobble();
new ProcessingStoneVarious();
new ProcessingToolHead();
new ProcessingToolOther();
new ProcessingWax();
new ProcessingWire();
}
}
|