me.xhsun.guildwars2wrapper.model.v2.continent.Continent 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.continent;
import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;
import java.util.List;
/**
* For more info on continents API go here
* Model class for continents
*
* @author xhsun
* @since 2017-06-15
*/
public class Continent extends NameableInt {
private double[] continent_dims;
private int min_zoom, max_zoom;
private List floors;
public double[] getContinentDims() {
return continent_dims;
}
public int getMinZoom() {
return min_zoom;
}
public int getMaxZoom() {
return max_zoom;
}
public List getFloors() {
return floors;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy