// A simple interface // Raja Sooriamurthi 11/13/99 import java.awt.Graphics; public interface Moveable { // void setMotion (int dx, int dy); void move(); void erase (Graphics g); void paint (Graphics g); }