Bukkit  1.4.7-R1.0
 All Classes Namespaces Files Functions Variables Enumerator Pages
Projectile.java
Go to the documentation of this file.
1 package org.bukkit.entity;
2 
3 import org.bukkit.block.Dispenser;
4 
8 public interface Projectile extends Entity {
9 
16  public LivingEntity getShooter();
17 
23  public void setShooter(LivingEntity shooter);
24 
32  public boolean doesBounce();
33 
39  public void setBounce(boolean doesBounce);
40 }