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

me.xhsun.guildwars2wrapper.model.v2.wvw.matches.WvWMatchStat Maven / Gradle / Ivy

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

import java.util.List;

/**
 * For more info on WvW matches API go here
* Model class for WvW match status * * @author xhsun * @since 2017-06-20 */ public class WvWMatchStat extends WvWMatch { private WvWMatchDetail.Score deaths, kills; private List maps; public WvWMatchDetail.Score getDeaths() { return deaths; } public WvWMatchDetail.Score getKills() { return kills; } public List getMaps() { return maps; } public class MapStat extends WvWMatchMap { private WvWMatchDetail.Score deaths, kills; public WvWMatchDetail.Score getDeaths() { return deaths; } public WvWMatchDetail.Score getKills() { return kills; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy