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

me.xhsun.guildwars2wrapper.model.v2.MapOverview Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package me.xhsun.guildwars2wrapper.model.v2;

import me.xhsun.guildwars2wrapper.model.identifiable.NameableInt;

import java.util.List;

/**
 * For more info on maps API go here
* Model class for maps * * @author xhsun * @since 2017-06-19 */ public class MapOverview extends NameableInt { private int min_level, max_level, default_floor, region_id, continent_id; private String region_name, continent_name; private List floors; private double[][] continent_rect, map_rect; public int getRegionId() { return region_id; } public int getContinentId() { return continent_id; } public String getRegionName() { return region_name; } public String getContinentName() { return continent_name; } public int getMinLevel() { return min_level; } public int getMaxLLevel() { return max_level; } public int getDefaultFloor() { return default_floor; } public List getFloors() { return floors; } public double[][] getContinentRect() { return continent_rect; } public double[][] getMapRect() { return map_rect; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy