me.xhsun.guildwars2wrapper.model.v2.util.skillFact.SkillTraitedFact Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw2wrapper Show documentation
Show all versions of gw2wrapper Show documentation
Guild Wars 2 API wrapper for Android
package me.xhsun.guildwars2wrapper.model.v2.util.skillFact;
import me.xhsun.guildwars2wrapper.model.v2.Skill;
/**
* ProfessionSkill traited fact class for {@link Skill}
*
* @author xhsun
* @since 2017-06-17
*/
public class SkillTraitedFact extends SkillFact {
private int requires_trait, overrides;
public int getRequiresTrait() {
return requires_trait;
}
public int getOverrides() {
return overrides;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy