Files
Bukkit/src/main/java/org/bukkit/entity/ThrownPotion.java
2012-02-10 17:26:38 -05:00

16 lines
322 B
Java

package org.bukkit.entity;
import java.util.Collection;
import org.bukkit.potion.PotionEffect;
/**
* Represents a thrown potion bottle
*/
public interface ThrownPotion extends Projectile {
/**
* Returns the effects that are applied by this potion.
*/
public Collection<PotionEffect> getEffects();
}