Examples of GunType


Examples of com.flansmod.common.guns.GunType

          }
        }
        ItemStack gunStack = new ItemStack(type.guns[i].getItem());
        if(type.guns[i] instanceof GunType)
        {
          GunType gunType = (GunType)type.guns[i];
          NBTTagCompound tags = new NBTTagCompound();
          tags.setString("Paint", gunType.defaultPaintjob.iconName);
          //Add ammo tags
          NBTTagList ammoTagsList = new NBTTagList();
          for(int j = 0; j < gunType.numAmmoItemsInGun; j++)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.