17 lines
465 B
Java
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();
|
||
|
}
|