Advertisement
Guest User

EntitySapphire_Arrow

a guest
Dec 12th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. package tutuicraft3.sapphirecraft;
  2.  
  3. import net.minecraft.entity.EntityLivingBase;
  4. import net.minecraft.entity.player.EntityPlayer;
  5. import net.minecraft.entity.projectile.EntityArrow;
  6. import net.minecraft.init.Items;
  7. import net.minecraft.item.ItemStack;
  8. import net.minecraft.world.World;
  9.  
  10. public class EntitySapphire_Arrow extends EntityArrow {
  11.    
  12.     public EntitySapphire_Arrow(World world) {
  13.         super(world);
  14.     }  
  15.     public EntitySapphire_Arrow(World world, double x, double y, double z) {
  16.         super(world, x, y, z);
  17.     }    
  18.     public EntitySapphire_Arrow(World world, EntityLivingBase par1Entity, EntityLivingBase par2Entity, float p_i1755_4_, float p_i1755_5_) {
  19.         super(world, par1Entity, par2Entity, p_i1755_4_, p_i1755_5_);
  20.     }
  21.     public EntitySapphire_Arrow(World world, EntityLivingBase entity, float p_i1756_3_) {
  22.         super(world, entity, p_i1756_3_);
  23.     }    
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement