Added World.strikeLightningEffect() that does no damage.

This commit is contained in:
sk89q
2011-05-06 19:25:43 -07:00
parent b67483a069
commit b09635228e
2 changed files with 19 additions and 2 deletions

View File

@@ -2,8 +2,17 @@
package org.bukkit.entity;
/**
* Represents an instance of a lightning strike entity
* Represents an instance of a lightning strike. May or may not do damage.
*
* @author sk89q
*/
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();
}