All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mmb.data.variables.BooleanVariable Maven / Gradle / Ivy

Go to download

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() {}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy