blob: f8b2d3eaa511ddbcb0fed8a4ef8874f3802c745a [file] [log] [blame] [raw]
package mods.immibis.redlogic.api.wiring;
/**
* Interface implemented by tile entities that receive redstone updates.
* Insulated wire does not cause block updates when it changes state.
* Tile entities that connect to insulated wire must implement this if they need notification of state changes.
* Bare red alloy wire causes block updates and does not call onRedstoneInputChanged.
*/
public interface IRedstoneUpdatable {
public void onRedstoneInputChanged();
}