13
0
geforkt von Mirrors/Paper

Renamed ArrowEntity->Arrow to be consistent.

By: sk89q <the.sk89q@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2011-01-03 14:10:49 +08:00
Ursprung dc3ed9d7d6
Commit b5fffb9a81
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

@ -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);
/**