mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-11 02:02:04 -07:00
Added ArrowEntity and World.spawnArrow().
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
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 Chunk getChunkAt(Block block);
|
||||||
|
|
||||||
public boolean isChunkLoaded();
|
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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user