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

mmb.content.modular.gui.ModuleConfigHandler 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.content.modular.gui;

import java.awt.Component;

import mmb.NN;
import mmb.menu.world.inv.InventoryController;

/**
 * Handles the module GUIs
 * @author oskar
 * @param  type of block modules
 * @param  The type of components used by the config handler
 */
public interface ModuleConfigHandler {
	/**
	 * Creates a new component to be placed by module editor
	 * @param invctrl inventory controller to take selected items from
	 * @param element source part
	 * @return a new editor component
	 */
	@NN public Tgui newComponent(InventoryController invctrl, Telement element);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy