blob: b354021c35c5746746e62351ebe3cfeeb0f2d32e [file] [log] [blame] [raw]
package mods.railcraft.api.tracks;
/**
* Implementing this interface will allow your track to be direction specific.
*
* And so long as you inherit from TrackInstanceBase it will automatically be
* reversable via the Crowbar.
*
* @author CovertJaguar <http://www.ModTMechworks.info>
*/
public interface ITrackReversable extends ITrackInstance
{
public boolean isReversed();
public void setReversed(boolean reversed);
}