Package com.flansmod.common.guns

Examples of com.flansmod.common.guns.EntityAAGun


  public void handleClientSide(EntityPlayer clientPlayer)
  {
    Entity entity = clientPlayer.worldObj.getEntityByID(entityID);
    if(entity instanceof EntityAAGun)
    {
      EntityAAGun aa = (EntityAAGun)entity;
      aa.prevGunYaw = aa.gunYaw;
      aa.prevGunPitch = aa.gunPitch;
      aa.gunYaw = gunYaw;
      aa.gunPitch = gunPitch;
    }
View Full Code Here

TOP

Related Classes of com.flansmod.common.guns.EntityAAGun

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.