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

me.xhsun.guildwars2wrapper.model.v2.continent.Continent Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
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