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

mmb.menu.world.craft.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<

There is a newer version: 0.6
Show newest version
/**
 * 
 */
package mmb.menu.world.craft;

import javax.swing.JPanel;

/**
 * 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(T recipe);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy