summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/LightningStrike.java
blob: c8b5154eaeb9440b497c0ae378440103a4c48b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();

}