
com.github.bloodshura.ignitium.venus.value.NumericValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of venusscript Show documentation
Show all versions of venusscript Show documentation
A dynamic, easy, highly customizable scripting language.
The newest version!
package com.github.bloodshura.ignitium.venus.value;
import com.github.bloodshura.ignitium.venus.type.Type;
public abstract class NumericValue extends Value {
public NumericValue(Type type) {
super(type);
}
@Override
public abstract Number value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy