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

me.xhsun.guildwars2wrapper.model.v2.wvw.WvWUpgrade Maven / Gradle / Ivy

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

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

import java.util.List;

/**
 * For more info on WvW upgrades API go here
* Model class for WvW upgrade * * @author xhsun * @since 2017-06-20 */ public class WvWUpgrade extends IdentifiableInt { private List tiers; public List getTiers() { return tiers; } public class Tier { private String name, description; private int yaks_required; private List upgrades; public String getName() { return name; } public String getDescription() { return description; } public int getYaksRequired() { return yaks_required; } public List getUpgrades() { return upgrades; } } public class Upgrade { private String name, description, icon; public String getName() { return name; } public String getDescription() { return description; } public String getIcon() { return icon; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy