Commons/src/main/java/eu/univento/commons/player/currency/CurrencyType.java

22 lines
409 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.currency;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author joethei
* @version 0.1
*/
@Getter
@AllArgsConstructor
public enum CurrencyType {
Vents("Vents", "");
private String name;
private String symbol;
}