com.skillw.pouvoir.util.read.Value Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
The newest version!
package com.skillw.pouvoir.util.read;
public class Value {
public double value;
public char operator;
public Value(double value, char operator) {
this.value = value;
this.operator = operator;
}
@Override
public String toString() {
return String.valueOf(this.operator) + this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy