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