Package com.flansmod.common.guns

Examples of com.flansmod.common.guns.EntityBullet


     
      for(Object obj : mc.theWorld.loadedEntityList)
      {
        if(obj instanceof EntityBullet)
        {
          EntityBullet bullet = (EntityBullet)obj;
          if(!bullet.isDead && bullet.type.hasLight)
          {
            int x = MathHelper.floor_double(bullet.posX);
            int y = MathHelper.floor_double(bullet.posY);
            int z = MathHelper.floor_double(bullet.posZ);
View Full Code Here

TOP

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

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.