mmb.data.variables.BooleanVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
The newest version!
/**
*
*/
package mmb.data.variables;
/**
* @author oskar
*
*/
public class BooleanVariable {
boolean value;
/**
* @return the value
*/
public boolean getValue() {
return value;
}
/**
* @param value the value to set
*/
public void setValue(boolean value) {
this.value = value;
}
/**
* Create a boolean container object using a value
* @param value
*/
public BooleanVariable(boolean value) {
this.value = value;
}
/** Create a boolean container with default value({@code false})*/
public BooleanVariable() {}
}