Mekanism-tilera-Edition/common/cofh/api/tileentity/IRedstoneControl.java
2013-11-14 21:58:32 -05:00

21 lines
445 B
Java

package cofh.api.tileentity;
/**
* Implement this interface on Tile Entities which have redstone control functionality.
*
* @author King Lemming
*
*/
public interface IRedstoneControl {
public boolean getControlDisable();
public boolean getControlSetting();
public boolean setControlDisable(boolean disable);
public boolean setControlSetting(boolean state);
public boolean setRedstoneConfig(boolean disable, boolean state);
}