Commons/src/main/java/eu/univento/commons/player/statistics/ImpactStatistics.java

25 lines
466 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.commons.player.statistics;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author joethei
* @version 1.0
*/
@Getter
@AllArgsConstructor
public class ImpactStatistics {
private int gamesPlayed;
private int gamesWon;
private int gamesLost;
private int kills;
private int deaths;
}