Commons/src/main/java/eu/univento/commons/player/kick/KickReason.java

28 lines
452 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.kick;
import lombok.Getter;
/**
* @author joethei
* @version 0.1
*/
@Getter
public enum KickReason {
INSULT("Insult", 10);
private String name;
private int points;
KickReason(String name, int points) {
this.name = name;
this.points = points;
}
}