GT5-Unofficial/main/java/gregtech/api/interfaces/tileentity/IRedstoneTileEntity.java

17 lines
465 B
Java
Raw Normal View History

2015-04-23 16:14:22 +00:00
package gregtech.api.interfaces.tileentity;
/**
* This File has just internal Information about the Redstone State of a TileEntity
*/
public interface IRedstoneTileEntity extends IRedstoneEmitter, IRedstoneReceiver {
/**
* enables/disables Redstone Output in general.
*/
void setGenericRedstoneOutput(boolean aOnOff);
/**
* Causes a general Block update.
* Sends nothing to Client, just causes a Block Update.
*/
public void issueBlockUpdate();
}