Files
Paper/paper-api/src/main/java/org/bukkit/entity/Fireball.java
Bukkit/Spigot bb50f1a774 Pulling all pending Bukkit-JavaDoc changes
A special thanks goes to @aerouk for almost all of the changes found here.

By: Wesley Wolfe <weswolf@aol.com>
2013-12-15 01:07:43 -05:00

25 lines
514 B
Java

package org.bukkit.entity;
import org.bukkit.util.Vector;
/**
* Represents a Fireball.
*/
public interface Fireball extends Projectile, Explosive {
/**
* Fireballs fly straight and do not take setVelocity(...) well.
*
* @param direction the direction this fireball is flying toward
*/
public void setDirection(Vector direction);
/**
* Retrieve the direction this fireball is heading toward
*
* @return the direction
*/
public Vector getDirection();
}