equivalent-exchange-3/ee3_common/com/pahimar/ee3/item/crafting/TransmutationManager.java
2013-03-08 13:40:59 -05:00

42 lines
845 B
Java

package com.pahimar.ee3.item.crafting;
import java.util.ArrayList;
import java.util.List;
/**
* Equivalent-Exchange-3
*
* TransmutationManager
*
* @author pahimar
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
*
*/
public class TransmutationManager {
/** The static instance of this class */
private static final TransmutationManager instance = new TransmutationManager();
/** A list of all the recipes added */
private List recipes = new ArrayList();
/**
* Returns the static instance of this class
*/
public static final TransmutationManager getInstance() {
return instance;
}
private TransmutationManager() {
}
/**
* returns the List<> of all recipes
*/
public List getRecipeList() {
return recipes;
}
}