blob: ff0d525d4ccbd91da17c7962bf60d948a9710dd6 [file] [log] [blame] [raw]
package appeng.api.me.tiles;
/**
* Cables will connect, but signal will not propagate. ( IFulllyOptionalMETile disconnects )
*/
public interface IOptionalMETile {
/**
* if false, the signal will not propigate via this tile, remember to use connectivity events.
* @return
*/
public boolean isEnabled();
}