Files
Paper/paper-api/src/main/java/org/bukkit/entity/ThrownPotion.java
Bukkit/Spigot 795a61bbeb Fix javadoc errors/warnings
By: Celtic Minstrel <celtic.minstrel.ca@some.place>
2012-02-26 10:35:17 -05:00

17 lines
356 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.
* @return The potion effects
*/
public Collection<PotionEffect> getEffects();
}