Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package org.bukkit.entity;
2
3/**
4 * Represents an instance of a lightning strike. May or may not do damage.
5 *
6 * @author sk89q
7 */
8public interface LightningStrike extends Weather {
9
10 /**
11 * Returns whether the strike is an effect that does no damage.
12 *
13 * @return whether the strike is an effect
14 */
15 public boolean isEffect();
16
17}