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

me.xhsun.guildwars2wrapper.model.v2.Specialization Maven / Gradle / Ivy

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

import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;

import java.util.List;

/**
 * For more info on specializations API go here
* Model class for specialization * * @author xhsun * @since 2017-06-15 */ public class Specialization extends NameableInt { private Item.Restriction profession; private boolean elite; private String background, icon; private List minor_traits, major_traits; public Item.Restriction getProfession() { return profession; } public boolean isElite() { return elite; } public String getIcon() { return icon; } public String getBackground() { return background; } public List getMinorTraits() { return minor_traits; } public List getMajorTraits() { return major_traits; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy