Files
PrimalSorcery/build/tmp/recompileMc/sources/net/minecraft/entity/IProjectile.java
Mohammad-Ali Minaie b86dedad2f base mod created
2018-10-08 09:07:47 -04:00

9 lines
250 B
Java

package net.minecraft.entity;
public interface IProjectile
{
/**
* Similar to setArrowHeading, it's point the throwable entity to a x, y, z direction.
*/
void shoot(double x, double y, double z, float velocity, float inaccuracy);
}