summaryrefslogtreecommitdiffstats
path: root/src/main/java/org
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org')
-rw-r--r--src/main/java/org/bukkit/LivingEntity.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/org/bukkit/LivingEntity.java b/src/main/java/org/bukkit/LivingEntity.java
index e8e6373e..d1bd9180 100644
--- a/src/main/java/org/bukkit/LivingEntity.java
+++ b/src/main/java/org/bukkit/LivingEntity.java
@@ -28,4 +28,11 @@ public interface LivingEntity extends Entity {
* Throws a snowball from the entity.
*/
public Snowball throwSnowball();
+
+ /**
+ * Shoots an arrow from the entity.
+ *
+ * @return
+ */
+ public Arrow shootArrow();
}