18 lines
327 B
Java
18 lines
327 B
Java
package resonantinduction.old.api;
|
|
|
|
/**
|
|
* Interface applied to the manipulator.
|
|
*
|
|
* @author Calclavia
|
|
*/
|
|
public interface IManipulator
|
|
{
|
|
/**
|
|
* Find items going into the manipulator and input them into an inventory behind this
|
|
* manipulator.
|
|
*/
|
|
public void inject();
|
|
|
|
/** Injects items */
|
|
public void enject();
|
|
}
|