Test with stuff + Forestry potential support
This commit is contained in:
parent
5b05cf651b
commit
bd26e441cb
174 changed files with 5602 additions and 0 deletions
44
BM_src/forestry/api/recipes/RecipeManagers.java
Normal file
44
BM_src/forestry/api/recipes/RecipeManagers.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
package forestry.api.recipes;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
/**
|
||||
* Contains all available recipe managers for Forestry machines and items.
|
||||
*
|
||||
* @author SirSengir
|
||||
*/
|
||||
public class RecipeManagers {
|
||||
|
||||
public static Collection<ICraftingProvider> craftingProviders;
|
||||
|
||||
/**
|
||||
* Allows you to add recipes to the bottler. See {@link IBottlerManager} for details.
|
||||
*/
|
||||
public static IBottlerManager bottlerManager;
|
||||
/**
|
||||
* Allows you to add recipes to the carpenter. See {@link ICarpenterManager} for details.
|
||||
*/
|
||||
public static ICarpenterManager carpenterManager;
|
||||
/**
|
||||
* Allows you to add recipes to the centrifuge. See {@link ICentrifugeManager} for details.
|
||||
*/
|
||||
public static ICentrifugeManager centrifugeManager;
|
||||
/**
|
||||
* Allows you to add recipes to the fermenter. See {@link IFermenterManager} for details.
|
||||
*/
|
||||
public static IFermenterManager fermenterManager;
|
||||
/**
|
||||
* Allows you to add recipes to the moistener. See {@link IMoistenerManager} for details.
|
||||
*/
|
||||
public static IMoistenerManager moistenerManager;
|
||||
/**
|
||||
* Allows you to add recipes to the squeezer. See {@link ISqueezerManager} for details.
|
||||
*/
|
||||
public static ISqueezerManager squeezerManager;
|
||||
/**
|
||||
* Allows you to add recipes to the still. See {@link IStillManager} for details.
|
||||
*/
|
||||
public static IStillManager stillManager;
|
||||
|
||||
public static IFabricatorManager fabricatorManager;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue