mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-14 13:43:55 +01:00
Added ArrowEntity and World.spawnArrow().
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
7da3223201
commit
1ce014ded9
2 changed files with 21 additions and 0 deletions
9
paper-api/src/main/java/org/bukkit/ArrowEntity.java
Normal file
9
paper-api/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…
Reference in a new issue