Examples of VanillaArmorStandEquipHandler


Examples of net.mcft.copy.betterstorage.tile.stand.VanillaArmorStandEquipHandler

    registerArmorStandHandlers();
  }
 
  protected void registerArmorStandHandlers() {
   
    BetterStorageArmorStand.helmet     = new VanillaArmorStandEquipHandler(EnumArmorStandRegion.HEAD);
    BetterStorageArmorStand.chestplate = new VanillaArmorStandEquipHandler(EnumArmorStandRegion.CHEST);
    BetterStorageArmorStand.leggins    = new VanillaArmorStandEquipHandler(EnumArmorStandRegion.LEGS);
    BetterStorageArmorStand.boots      = new VanillaArmorStandEquipHandler(EnumArmorStandRegion.FEET);
   
    BetterStorageArmorStand.registerEquipHandler(BetterStorageArmorStand.helmet);
    BetterStorageArmorStand.registerEquipHandler(BetterStorageArmorStand.chestplate);
    BetterStorageArmorStand.registerEquipHandler(BetterStorageArmorStand.leggins);
    BetterStorageArmorStand.registerEquipHandler(BetterStorageArmorStand.boots);
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.