001    package net.minecraft.entity;
002    
003    public interface IProjectile
004    {
005        /**
006         * Similar to setArrowHeading, it's point the throwable entity to a x, y, z direction.
007         */
008        void setThrowableHeading(double var1, double var3, double var5, float var7, float var8);
009    }