import java.awt.*; public interface IDrawingObject { float getStep(); void SetObject(int x, int y, int width, int height); void MoveObject(Direction direction); void DrawningObject(Graphics2D g); Point GetLeftTop(); Point GetRightBottom(); }