blob: 452699a172aa96d263a7cf5b2f153e07c1391e32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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.
*/
void issueBlockUpdate();
}
|