dev.aurelium.auraskills.api.util.AuraSkillsModifier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of auraskills-api Show documentation
Show all versions of auraskills-api Show documentation
API for AuraSkills, the ultra-versatile RPG skills plugin for Minecraft
package dev.aurelium.auraskills.api.util;
public abstract class AuraSkillsModifier {
protected final String name;
protected final T type;
protected final double value;
public AuraSkillsModifier(String name, T type, double value) {
this.name = name;
this.type = type;
this.value = value;
}
public String name() {
return name;
}
public T type() {
return type;
}
public double value() {
return value;
}
@Override
public String toString() {
return name + "," + type + "," + value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy