/**
 * A CalaverasCrossing vehicle.
 *
 * @author Jim Glenn
 * @version 0.1 10/7/2008
 */

public class Vehicle extends Obstacle
{
    /**
     * Creates a new vehicle of the given width.
     *
     * @param w a positive <CODE>double</CODE>
     */

    public Vehicle(double w)
    {
	super(w);
    }

    /**
     * Determines if this vehicle is lethal to the touch.
     */

    public boolean isLethal()
    {
	return true;
    }
}

