aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IRedstoneTileEntity.java
blob: 6100572a7d2e03ef65ffac6d330dc2bbaa1c82bf (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();
}