Initiating Omega protocol.

This commit is contained in:
WayofTime 2015-01-10 12:23:41 -05:00
parent beab450a62
commit fd437fb4ca
26 changed files with 1934 additions and 37 deletions

View file

@ -1,13 +0,0 @@
package WayofTime.alchemicalWizardry.book.registries;
import java.util.HashMap;
import WayofTime.alchemicalWizardry.book.compact.CompactItem;
import WayofTime.alchemicalWizardry.book.interfaces.IReviving;
public class RevivingRegistry {
public static void registerReviving(CompactItem ingredients, IReviving reviving){
recipes.put(ingredients, reviving);
}
public static HashMap<CompactItem, IReviving> recipes = new HashMap<CompactItem, IReviving>();
}