BloodMagic/BM_src/WayofTime/alchemicalWizardry/common/spell/complex/enhancement/SpellEnhancement.java
WayofTime 091bb3db3f Fun testing stuff
Added some basic fire effect stuff to test how well the system works. So
far so good!
2014-01-18 22:16:39 -05:00

21 lines
378 B
Java

package WayofTime.alchemicalWizardry.common.spell.complex.enhancement;
public class SpellEnhancement
{
public static final int POWER = 0;
public static final int EFFICIENCY = 1;
public static final int POTENCY = 2;
private int state = this.POWER;
protected SpellEnhancement(int state)
{
this.state = state;
}
public int getState()
{
return this.state;
}
}