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

me.xhsun.guildwars2wrapper.model.v2.character.CharacterSAB 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.identifiable.IdentifiableInt;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;

import java.util.List;

/**
 * For more info on character SAB API go here
* Model class for character SAB * * @author xhsun * @since 2017-06-07 */ public class CharacterSAB { private List zones; private List unlocks, songs; public List getZones() { return zones; } public List getUnlocks() { return unlocks; } public List getSongs() { return songs; } public class Zone extends IdentifiableInt { private String mode; private int world, zone; public String getMode() { return mode; } public int getWorld() { return world; } public int getZone() { return zone; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy