10 lines
215 B
Java
10 lines
215 B
Java
package org.bukkit.entity;
|
|
|
|
/**
|
|
* Represents a thrown splash potion bottle
|
|
*
|
|
* @deprecated splash status depends on only on the potion item.
|
|
*/
|
|
@Deprecated
|
|
public interface SplashPotion extends ThrownPotion { }
|