BloodMagic/src/main/java/WayofTime/alchemicalWizardry/api/spell/ISpecialDamageEffect.java

11 lines
195 B
Java
Raw Normal View History

package WayofTime.alchemicalWizardry.api.spell;
import net.minecraft.entity.Entity;
2014-10-13 22:33:20 +02:00
public interface ISpecialDamageEffect
{
float getDamageForEntity(Entity entity);
2014-10-13 22:33:20 +02:00
String getKey();
}