blob: b3acceb39f89388a6977c06ad5f27d78129b6867 [file] [log] [blame] [raw]
package mods.railcraft.api.tracks;
/**
* Tracks that can emit a redstone signal should implement
* this interface.
*
* For example a detector track.
*
* A track cannot implement both ITrackPowered and ITrackEmitter.
*
* @author CovertJaguar <http://www.ModTMechworks.info>
*/
public interface ITrackEmitter extends ITrackInstance
{
/**
* Return the redstone output of the track.
*
* @return true if powered
*/
public int getPowerOutput();
}