Bukkit/src/main/java/org/bukkit/entity/LightningStrike.java
2011-10-10 21:58:44 +01:00

16 lines
335 B
Java

package org.bukkit.entity;
/**
* Represents an instance of a lightning strike. May or may not do damage.
*/
public interface LightningStrike extends Weather {
/**
* Returns whether the strike is an effect that does no damage.
*
* @return whether the strike is an effect
*/
public boolean isEffect();
}