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

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

import java.util.List;

/**
 * For more info on character training API go here
* Model class for character training * @see Profession.Training * @author xhsun * @since 2017-06-07 */ public class CharacterTraining { private List training; public List getTraining() { return training; } public class Training extends IdentifiableInt { private int spent; private boolean done; public int getSpent() { return spent; } public boolean isDone() { return done; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy