Package com.flansmod.common.guns

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

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

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.