//********************************************************************
// Driver.java         Author: Lewis/Loftus/Cocking
//
// An interface that all drivers of bumper cars must implement.
//********************************************************************

public interface Driver
{

    //----------------------------------------------------------------
    // Drive the car one unit. Different drivers will have different
    // algorithms for determining where to drive the car next.
    //----------------------------------------------------------------
    public void drive();

}
