aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneTileEntity.java
blob: f1cf01d291d3819763b1d4aeefa289b4675ed5bb (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.
     */
    public void issueBlockUpdate();
}