import java.awt.*; public interface IDrawingObject { public float Step(); void SetObject(int x, int y,int width,int height); void MoveObject(Direction direction); void DrawingObject(Graphics g); float[] GetCurrentPosition(); }