Added interfaces for custom Spell Paradigms.

This commit is contained in:
WayofTime 2014-11-16 19:24:26 -05:00
parent 8e1c8460be
commit bc50e92fa3
4 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,11 @@
package WayofTime.alchemicalWizardry.api.tile;
import net.minecraftforge.common.util.ForgeDirection;
import WayofTime.alchemicalWizardry.api.spell.SpellParadigm;
public interface ISpellTile
{
public void modifySpellParadigm(SpellParadigm parad);
public boolean canInputRecieveOutput(ForgeDirection output);
}