Renamed ArrowEntity->Arrow to be consistent.

This commit is contained in:
sk89q 2011-01-03 14:10:49 +08:00 committed by Dinner Bone
parent 2c1cc25655
commit bb87bcdd74
2 changed files with 2 additions and 2 deletions

View File

@ -5,5 +5,5 @@ package org.bukkit;
*
* @author sk89q
*/
public interface ArrowEntity extends Entity {
public interface Arrow extends Entity {
}

View File

@ -53,7 +53,7 @@ public interface World {
* @param spread a reasonable spread is 12
* @return the arrow entity
*/
public ArrowEntity spawnArrow(Location loc, Vector velocity,
public Arrow spawnArrow(Location loc, Vector velocity,
float speed, float spread);
/**