blob: 563daa7291e721f2081c247ce135710301a54966 [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.railcraft.info>
*/
public interface ITrackReversable extends ITrackInstance
{
public boolean isReversed();
public void setReversed(boolean reversed);
}