mmb.engine.Consumer3 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<
/**
*
*/
package mmb.engine;
/**
* A three-way consumer
* @author oskar
* @param
* @param
* @param
*/
public interface Consumer3 {
/**
* Runs the consumer
* @param arg1
* @param arg2
* @param arg3
*/
public void accept(T1 arg1, T2 arg2, T3 arg3);
}