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