GT5-Unofficial/main/java/gregtech/api/interfaces/tileentity/IRedstoneTileEntity.java
2015-04-23 18:14:22 +02:00

17 lines
465 B
Java

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();
}