All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.xhsun.guildwars2wrapper.model.v2.character.CharacterEquipment Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2.character;

import me.xhsun.guildwars2wrapper.model.v2.Color;
import me.xhsun.guildwars2wrapper.model.v2.util.Inventory;

import java.util.List;

/**
 * For more info on character equipment API go here
* Model class for character equipment * * @author xhsun * @since 2017-06-07 */ public class CharacterEquipment { public enum Slot { HelmAquatic, Backpack, Coat, Boots, Gloves, Helm, Leggings, Shoulders, Accessory1, Accessory2, Ring1, Ring2, Amulet, WeaponAquaticA, WeaponAquaticB, WeaponA1, WeaponA2, WeaponB1, WeaponB2, Sickle, Axe, Pick } private List equipment; public List getEquipment() { return equipment; } public class Equipment extends Inventory { private Slot slot; private List dyes; public Slot getSlot() { return slot; } /** * @return list of {@link Color#id} */ public List getDyes() { return dyes; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy