blob: bf3b655b5ede01392c9374951707b39ee7b0b30c [file] [log] [blame] [raw]
package mods.railcraft.api.tracks;
import net.minecraft.entity.item.EntityMinecart;
/**
* Any rail tile entity that can completely halt
* all cart movement should implement this interface.
* (Used in collision handling)
*
* @author CovertJaguar <http://www.railcraft.info>
*/
public interface ITrackLockdown extends ITrackInstance
{
public boolean isCartLockedDown(EntityMinecart cart);
public void releaseCart();
}