import java.awt.*;

public abstract class Shape {
    int x, y;
    Color strokeColor, fillColor;
    abstract void draw(Graphics2D g2d);
}
