11 lines
195 B
Java
11 lines
195 B
Java
package WayofTime.alchemicalWizardry.api.spell;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
public interface ISpecialDamageEffect
|
|
{
|
|
float getDamageForEntity(Entity entity);
|
|
|
|
String getKey();
|
|
}
|