001         package com.croftsoft.apps.road.model;
002    
003         import java.awt.*;
004         
005         import com.croftsoft.core.animation.model.Model;
006    
007         /*********************************************************************
008         * Roadrunner car.
009         *
010         * @version
011         *   2003-11-09
012         * @since
013         *   2003-11-09
014         * @author
015         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
016         *********************************************************************/
017    
018         public interface  Car
019           extends Model
020         //////////////////////////////////////////////////////////////////////
021         //////////////////////////////////////////////////////////////////////
022         {
023    
024         public void  setDestinationPoint ( Point  destinationPoint );
025    
026         //////////////////////////////////////////////////////////////////////
027         //////////////////////////////////////////////////////////////////////
028         }