Core/src/main/java/eu/univento/core/api/shop/ShopCategory.java

28 lines
475 B
Java

package eu.univento.core.api.shop;
import eu.univento.cloud.commons.server.ServerType;
/**
* @author joethei
* @version 0.1
*/
enum ShopCategory {
LOBBY("Lobby", ServerType.LOBBY);
private String name;
private ServerType type;
ShopCategory(String name, ServerType type) {
this.name = name;
this.type = type;
}
public String getName() {
return name;
}
public ServerType getType() {
return type;
}
}