Added ArrowEntity and World.spawnArrow().
This commit is contained in:
parent
fd3072b427
commit
e3fe73ca04
9
src/main/java/org/bukkit/ArrowEntity.java
Normal file
9
src/main/java/org/bukkit/ArrowEntity.java
Normal file
@ -0,0 +1,9 @@
|
||||
package org.bukkit;
|
||||
|
||||
/**
|
||||
* Represents an arrow.
|
||||
*
|
||||
* @author sk89q
|
||||
*/
|
||||
public interface ArrowEntity extends Entity {
|
||||
}
|
@ -15,4 +15,16 @@ public interface World {
|
||||
public Chunk getChunkAt(Block block);
|
||||
|
||||
public boolean isChunkLoaded();
|
||||
|
||||
/**
|
||||
* Spawns an arrow.
|
||||
*
|
||||
* @param loc
|
||||
* @param velocity velocity vector
|
||||
* @param speed a reasonable speed is 0.6
|
||||
* @param spread a reasonable spread is 12
|
||||
* @return the arrow entity
|
||||
*/
|
||||
public ArrowEntity spawnArrow(Location loc, Vector velocity,
|
||||
float speed, float spread);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user