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

me.xhsun.guildwars2wrapper.model.v2.character.CharacterSkills 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.Skill;

import java.util.List;

/**
 * For more info on character skills API go here
* Model class for character skills level * * @see Skill * @author xhsun * @since 2017-06-07 */ public class CharacterSkills { private Skills skills; public Utility getPve() { return skills.pve; } public Utility getPvp() { return skills.pvp; } public Utility getWvw() { return skills.wvw; } public class Skills { private Utility pve, pvp, wvw; public Utility getPve() { return pve; } public Utility getPvp() { return pvp; } public Utility getWvw() { return wvw; } } public class Utility { private int heal; private List utilities; private int elite; public int getHeal() { return heal; } public List getUtilities() { return utilities; } public int getElite() { return elite; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy