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

mmb.engine.Consumer3 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.engine;

/**
 * A three-way consumer
 * @author oskar
 * @param  type of the first input
 * @param  type of the second input
 * @param  type of the third input
 */
public interface Consumer3 {
	/**
	 * Runs the consumer
	 * @param arg1
	 * @param arg2
	 * @param arg3
	 */
	public void accept(T1 arg1, T2 arg2, T3 arg3);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy