package mods.railcraft.api.crafting; | |
/** | |
* These variables are defined during the pre-init phase. | |
* Do not attempt to access them during pre-init. | |
* | |
* @author CovertJaguar <http://www.ModTMechworks.info> | |
*/ | |
public abstract class RailcraftCraftingManager | |
{ | |
public static ICokeOvenCraftingManager cokeOven; | |
public static IBlastFurnaceCraftingManager blastFurnace; | |
public static IRockCrusherCraftingManager rockCrusher; | |
public static IRollingMachineCraftingManager rollingMachine; | |
} |