Files
Paper/paper-api/src/main/java/org/bukkit/entity/Projectile.java
Bukkit/Spigot b2156bae0d Remove _INVALID_ methods
By: md_5 <git@md-5.net>
2017-05-14 12:00:00 +10:00

41 lines
1.0 KiB
Java

package org.bukkit.entity;
import org.bukkit.projectiles.ProjectileSource;
/**
* Represents a shootable entity.
*/
public interface Projectile extends Entity {
/**
* Retrieve the shooter of this projectile.
*
* @return the {@link ProjectileSource} that shot this projectile
*/
public ProjectileSource getShooter();
/**
* Set the shooter of this projectile.
*
* @param source the {@link ProjectileSource} that shot this projectile
*/
public void setShooter(ProjectileSource source);
/**
* Determine if this projectile should bounce or not when it hits.
* <p>
* If a small fireball does not bounce it will set the target on fire.
*
* @return true if it should bounce.
*/
public boolean doesBounce();
/**
* Set whether or not this projectile should bounce or not when it hits
* something.
*
* @param doesBounce whether or not it should bounce.
*/
public void setBounce(boolean doesBounce);
}