Core/src/main/java/eu/univento/core/antihack/Hack.java

33 lines
601 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.core.antihack;
public enum Hack {
//int represents warn points
CRITICALS(10),
AUTOCLICKER(10),
GLIDE(10),
REACH(10),
NOSLOWDOWN(10),
REGEN(10),
AUTORESPAWN(10),
FASTPLACE(10),
KILLAURA(10),
FLY(10),
WDL(10),
NUKER(10);
private int id;
Hack(int id) {
this.setId(id);
}
public int getId() {
return id;
}
private void setId(int id) {
this.id = id;
}
}