BloodMagic/BM_src/WayofTime/alchemicalWizardry/common/ICatalyst.java

9 lines
169 B
Java
Raw Normal View History

2014-01-17 19:12:49 +00:00
package WayofTime.alchemicalWizardry.common;
2014-01-17 21:43:13 +00:00
public interface ICatalyst
{
2014-01-17 19:12:49 +00:00
public abstract int getCatalystLevel();
2014-01-17 19:12:49 +00:00
public abstract boolean isConcentration();
}