Added LivingEntity.shootArrow().

This commit is contained in:
sk89q
2011-01-03 17:15:09 -08:00
parent 3d99598d30
commit 790c3d26b8

View File

@@ -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();
}