resonant-induction/archive/java/dark/lib/interfaces/IPowerLess.java
2014-01-11 17:44:07 +08:00

17 lines
380 B
Java

package dark.lib.interfaces;
/**
* Applied to devices that have the option to run without power. Normally this option is only shown
* to creative mode players
*
* @author DarkGuardsman
*/
public interface IPowerLess
{
/** Should this run without power */
public boolean runPowerLess();
/** Set if this should run powerless */
public void setPowerLess(boolean bool);
}