blob: 237a3915eb357f60669b1078db4c603574498307 [file] [log] [blame] [raw]
/*
* Copyright (c) CovertJaguar, 2011 http://railcraft.info
*
* This code is the property of CovertJaguar
* and may only be used with explicit written
* permission unless otherwise specified on the
* license page at railcraft.wikispaces.com.
*/
package mods.railcraft.api.carts;
import net.minecraft.item.ItemStack;
/**
*
* @author CovertJaguar <http://www.ModTMechworks.info/>
*/
public interface IRoutableCart {
String getDestination();
boolean setDestination(ItemStack ticket);
}