Newer
Older
ultramine_bukkit / src / main / java / org / bukkit / entity / Fireball.java
@vlad20012 vlad20012 on 24 Feb 2017 477 bytes initial
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();

}