
/**
 * Moveable interface
 */

public interface Moveable
    {
    void setLocation(int x, int y) ;

    int getXLocation() ;

    int getYLocation() ;
    } // end of interface Moveable

