001 package org.bukkit.entity;
002
003 /**
004 * Represents an instance of a lightning strike. May or may not do damage.
005 */
006 public interface LightningStrike extends Weather {
007
008 /**
009 * Returns whether the strike is an effect that does no damage.
010 *
011 * @return whether the strike is an effect
012 */
013 public boolean isEffect();
014
015 }