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

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

import javax.swing.JPanel;

import mmb.NN;

/**
 * Represents an abstraction for recipe views
 * @author oskar
 * @param  type of recipe (any Java reference type is valid)
 */
public abstract class RecipeView extends JPanel {
	private static final long serialVersionUID = -3618326216243742625L;
	/**
	 * Replaces information in this recipe view for given recipe
	 * @param recipe recipe to use for this recipe view
	 */
	public abstract void set(@NN T recipe);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy