superb-warfare/src/main/java/net/mcreator/superbwarfare/perk/Perk.java
2024-08-08 04:27:39 +08:00

26 lines
533 B
Java

package net.mcreator.superbwarfare.perk;
public class Perk {
public String descriptionId;
public Type type;
public Perk(String descriptionId, Type type) {
this.descriptionId = descriptionId;
this.type = type;
}
public enum Type {
AMMO("Ammo"),
FUNCTIONAL("Functional"),
DAMAGE("Damage");
private final String type;
Type(String type) {
this.type = type;
}
public String getName() {
return type;
}
}
}